Index: chrome/browser/ui/startup/startup_browser_creator_impl.cc |
diff --git a/chrome/browser/ui/startup/startup_browser_creator_impl.cc b/chrome/browser/ui/startup/startup_browser_creator_impl.cc |
index ff7b1acbac2a6ff0385bcd406e5f083854d1004b..1c3702b13f6c539f3db63baa23e79bd840988662 100644 |
--- a/chrome/browser/ui/startup/startup_browser_creator_impl.cc |
+++ b/chrome/browser/ui/startup/startup_browser_creator_impl.cc |
@@ -40,7 +40,6 @@ |
#include "chrome/browser/infobars/infobar_service.h" |
#include "chrome/browser/net/predictor.h" |
#include "chrome/browser/notifications/desktop_notification_service.h" |
-#include "chrome/browser/performance_monitor/startup_timer.h" |
#include "chrome/browser/prefs/incognito_mode_prefs.h" |
#include "chrome/browser/prefs/session_startup_pref.h" |
#include "chrome/browser/profiles/profile.h" |
@@ -634,19 +633,12 @@ bool StartupBrowserCreatorImpl::ProcessStartupURLs( |
} |
#endif |
- // Pause the StartupTimer. Since the restore here is synchronous, we can |
- // keep these two metrics (browser startup time and session restore time) |
- // separate. |
- performance_monitor::StartupTimer::PauseTimer(); |
- |
// The startup code only executes for browsers launched in desktop mode. |
// i.e. HOST_DESKTOP_TYPE_NATIVE. Ash should never get here. |
Browser* browser = SessionRestore::RestoreSession( |
profile_, NULL, desktop_type, restore_behavior, |
urls_to_open); |
- performance_monitor::StartupTimer::UnpauseTimer(); |
- |
AddInfoBarsIfNecessary(browser, chrome::startup::IS_PROCESS_STARTUP); |
return true; |
} |