Changeset 109066 in vbox
- Timestamp:
- Apr 24, 2025 8:41:08 AM (10 days ago)
- svn:sync-xref-src-repo-rev:
- 168603
- Location:
- trunk/src/libs/xpcom18a4/xpcom/components
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/libs/xpcom18a4/xpcom/components/nsCategoryManager.cpp
r102348 r109066 57 57 #include <iprt/assert.h> 58 58 #include <iprt/errcore.h> 59 #include <VBox/log.h> 59 60 60 61 class nsIComponentLoaderManager; … … 536 537 NS_ENSURE_ARG_POINTER(aEntryName); 537 538 NS_ENSURE_ARG_POINTER(aValue); 539 LogFlowFunc(("aCategoryName=%s aEntryName=%s aValue=%s aPresists=%d aReplace=%d\n", 540 aCategoryName, aEntryName, aValue, aPersist, aReplace)); 538 541 539 542 // Before we can insert a new entry, we'll need to … … 569 572 NS_ENSURE_ARG_POINTER(aCategoryName); 570 573 NS_ENSURE_ARG_POINTER(aEntryName); 574 LogFlowFunc(("aCategoryName=%s aEntryName=%s aDontPresists=%d\n", aCategoryName, aEntryName, aDontPersist)); 571 575 572 576 /* … … 591 595 { 592 596 NS_ENSURE_ARG_POINTER(aCategoryName); 597 LogFlowFunc(("aCategoryName=%s\n", aCategoryName)); 593 598 594 599 // the categories are arena-allocated, so we don't … … 758 763 const char *observerTopic) 759 764 { 765 LogFlowFunc(("category=%s origin=%p observerTopic=%s\n", category, origin, observerTopic)); 760 766 nsresult rv = NS_OK; 761 767 … … 790 796 continue; 791 797 } 798 LogFlowFunc(("Entry: entryString=%s contractID=%s\n", entryString.get(), contractID.get())); 792 799 793 800 nsCOMPtr<nsISupports> instance = do_GetService(contractID, &rv); -
trunk/src/libs/xpcom18a4/xpcom/components/nsComponentManager.cpp
r109065 r109066 1908 1908 if (NS_SUCCEEDED(rv)) 1909 1909 { 1910 1911 1910 rv = factory->CreateInstance(aDelegate, aIID, aResult); 1912 1911 NS_RELEASE(factory); … … 3003 3002 nsComponentManagerImpl::AutoRegister(PRInt32 when, nsIFile *inDirSpec) 3004 3003 { 3004 LogFlowFunc(("when=%#x inDirSpec=%p\n", when, inDirSpec)); 3005 3005 return AutoRegisterImpl(when, inDirSpec); 3006 3006 } … … 3260 3260 nsComponentManagerImpl::AutoRegister(nsIFile *aSpec) 3261 3261 { 3262 LogFlowFunc(("aSpec=%p\n", aSpec)); 3262 3263 if (aSpec == nsnull) 3263 3264 return AutoRegisterImpl(0, aSpec);
Note:
See TracChangeset
for help on using the changeset viewer.