From a080db14ddf620369fb9e7dff25e529b5eab75bf Mon Sep 17 00:00:00 2001 From: "dp%netscape.com" Date: Tue, 27 Nov 2001 01:55:55 +0000 Subject: [PATCH] Removing timeline marks. These dont provide much information git-svn-id: svn://10.0.0.236/trunk@108962 18797224-902f-48f8-a5cc-f745e15eee43 --- .../xpcom/components/nsNativeComponentLoader.cpp | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/mozilla/xpcom/components/nsNativeComponentLoader.cpp b/mozilla/xpcom/components/nsNativeComponentLoader.cpp index bdcf0b1bd53..f8132308021 100644 --- a/mozilla/xpcom/components/nsNativeComponentLoader.cpp +++ b/mozilla/xpcom/components/nsNativeComponentLoader.cpp @@ -44,8 +44,6 @@ #include "nsIObserverService.h" -#include "nsITimelineService.h" - #if defined(XP_MAC) // sdagley dougt fix #include #include @@ -93,11 +91,6 @@ nsNativeComponentLoader::GetFactory(const nsIID & aCID, const char *aType, nsIFactory **_retval) { - NS_TIMELINE_MARKV(("nsNativeComponentLoader::GetFactory(%s)...", - aLocation)); - NS_TIMELINE_INDENT(); - NS_TIMELINE_START_TIMER("nsNativeComponentLoader::GetFactory"); - nsresult rv; if (!_retval) @@ -165,12 +158,6 @@ nsNativeComponentLoader::GetFactory(const nsIID & aCID, // this is ok to limp along. NS_WARN_IF_FALSE(NS_SUCCEEDED(rv), "Factory creation failed"); - NS_TIMELINE_STOP_TIMER("nsNativeComponentLoader::GetFactory"); - NS_TIMELINE_OUTDENT(); - NS_TIMELINE_MARKV(("...nsNativeComponentLoader::GetFactory(%s) done", - aLocation)); - NS_TIMELINE_MARK_TIMER("nsNativeComponentLoader::GetFactory"); - return rv; }