diff options
Diffstat (limited to 'chrome/browser/browser_main.cc')
-rw-r--r-- | chrome/browser/browser_main.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/browser_main.cc b/chrome/browser/browser_main.cc index 07aad69658..e0b6df0 100644 --- a/chrome/browser/browser_main.cc +++ b/chrome/browser/browser_main.cc @@ -930,6 +930,9 @@ int BrowserMain(const MainFunctionParams& parameters) { // run before threads and windows are created. InitializeBrokerServices(parameters, parsed_command_line); + // Initialize histogram statistics gathering system. + StatisticsRecorder statistics; + PrefService* local_state = InitializeLocalState(parsed_command_line, is_first_run); @@ -1031,9 +1034,6 @@ int BrowserMain(const MainFunctionParams& parameters) { InitializeNetworkOptions(parsed_command_line); - // Initialize histogram statistics gathering system. - StatisticsRecorder statistics; - // Initialize histogram synchronizer system. This is a singleton and is used // for posting tasks via NewRunnableMethod. Its deleted when it goes out of // scope. Even though NewRunnableMethod does AddRef and Release, the object |