Index: chrome/browser/chrome_browser_main_mac.mm |
diff --git a/chrome/browser/chrome_browser_main_mac.mm b/chrome/browser/chrome_browser_main_mac.mm |
index 1cf2fdb86732eea62879f6416821069c1398b10f..fa0cc60c37dc8a06ad38ae8a62cab48448e4806d 100644 |
--- a/chrome/browser/chrome_browser_main_mac.mm |
+++ b/chrome/browser/chrome_browser_main_mac.mm |
@@ -20,6 +20,7 @@ |
#import "chrome/browser/chrome_browser_application_mac.h" |
#include "chrome/browser/mac/install_from_dmg.h" |
#import "chrome/browser/mac/keystone_glue.h" |
+#include "chrome/browser/mac/mac_startup_profiler.h" |
#include "chrome/browser/ui/app_list/app_list_service.h" |
#include "chrome/common/chrome_paths.h" |
#include "chrome/common/chrome_switches.h" |
@@ -175,6 +176,8 @@ void ChromeBrowserMainPartsMac::PreEarlyInitialization() { |
} |
void ChromeBrowserMainPartsMac::PreMainMessageLoopStart() { |
+ MacStartupProfiler::GetInstance()->Profile( |
+ MacStartupProfiler::PRE_MAIN_MESSAGE_LOOP_START); |
ChromeBrowserMainPartsPosix::PreMainMessageLoopStart(); |
// Tell Cocoa to finish its initialization, which we want to do manually |
@@ -257,7 +260,14 @@ void ChromeBrowserMainPartsMac::PreMainMessageLoopStart() { |
}]; |
} |
+void ChromeBrowserMainPartsMac::PostMainMessageLoopStart() { |
+ MacStartupProfiler::GetInstance()->Profile( |
+ MacStartupProfiler::POST_MAIN_MESSAGE_LOOP_START); |
+} |
+ |
void ChromeBrowserMainPartsMac::PreProfileInit() { |
+ MacStartupProfiler::GetInstance()->Profile( |
+ MacStartupProfiler::PRE_PROFILE_INIT); |
ChromeBrowserMainPartsPosix::PreProfileInit(); |
// This is called here so that the app shim socket is only created after |
// taking the singleton lock. |
@@ -266,6 +276,8 @@ void ChromeBrowserMainPartsMac::PreProfileInit() { |
} |
void ChromeBrowserMainPartsMac::PostProfileInit() { |
+ MacStartupProfiler::GetInstance()->Profile( |
+ MacStartupProfiler::POST_PROFILE_INIT); |
ChromeBrowserMainPartsPosix::PostProfileInit(); |
g_browser_process->metrics_service()->RecordBreakpadRegistration( |
breakpad::IsCrashReporterEnabled()); |