Changeset 101803 in vbox for trunk/src/libs/xpcom18a4/xpcom/io
- Timestamp:
- Nov 5, 2023 9:09:38 AM (18 months ago)
- svn:sync-xref-src-repo-rev:
- 159899
- Location:
- trunk/src/libs/xpcom18a4/xpcom/io
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/libs/xpcom18a4/xpcom/io/nsLocalFileUnix.cpp
r62375 r101803 79 79 #include "prproces.h" 80 80 #include "nsISimpleEnumerator.h" 81 #include "nsITimelineService.h"82 81 83 82 #include "nsNativeCharsetUtils.h" … … 1538 1537 NS_ENSURE_ARG_POINTER(_retval); 1539 1538 1540 NS_TIMELINE_START_TIMER("PR_LoadLibrary");1541 1542 1539 *_retval = PR_LoadLibrary(mPath.get()); 1543 1544 NS_TIMELINE_STOP_TIMER("PR_LoadLibrary");1545 NS_TIMELINE_MARK_TIMER1("PR_LoadLibrary", mPath.get());1546 1540 1547 1541 if (!*_retval) -
trunk/src/libs/xpcom18a4/xpcom/io/nsLocalFileWin.cpp
r62374 r101803 68 68 #include "nsXPIDLString.h" 69 69 #include "prproces.h" 70 #include "nsITimelineService.h"71 70 72 71 #include "nsAutoLock.h" … … 1339 1338 return NS_ERROR_FILE_IS_DIRECTORY; 1340 1339 1341 NS_TIMELINE_START_TIMER("PR_LoadLibrary");1342 1340 *_retval = PR_LoadLibrary(mResolvedPath.get()); 1343 NS_TIMELINE_STOP_TIMER("PR_LoadLibrary");1344 NS_TIMELINE_MARK_TIMER1("PR_LoadLibrary", mResolvedPath.get());1345 1346 1341 if (*_retval) 1347 1342 return NS_OK;
Note:
See TracChangeset
for help on using the changeset viewer.