| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_CHROME_BROWSER_MAIN_H_ | 5 #ifndef CHROME_BROWSER_CHROME_BROWSER_MAIN_H_ |
| 6 #define CHROME_BROWSER_CHROME_BROWSER_MAIN_H_ | 6 #define CHROME_BROWSER_CHROME_BROWSER_MAIN_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| 11 #include "base/metrics/field_trial.h" | 11 #include "base/metrics/field_trial.h" |
| 12 #include "base/profiler/stack_sampling_profiler.h" | 12 #include "base/profiler/stack_sampling_profiler.h" |
| 13 #include "base/tracked_objects.h" | 13 #include "base/tracked_objects.h" |
| 14 #include "build/build_config.h" | 14 #include "build/build_config.h" |
| 15 #include "chrome/browser/chrome_browser_field_trials.h" | 15 #include "chrome/browser/chrome_browser_field_trials.h" |
| 16 #include "chrome/browser/chrome_process_singleton.h" | 16 #include "chrome/browser/chrome_process_singleton.h" |
| 17 #include "chrome/browser/first_run/first_run.h" | 17 #include "chrome/browser/first_run/first_run.h" |
| 18 #include "chrome/browser/process_singleton.h" | 18 #include "chrome/browser/process_singleton.h" |
| 19 #include "chrome/browser/stack_sampling_configuration.h" | |
| 20 #include "chrome/browser/ui/startup/startup_browser_creator.h" | 19 #include "chrome/browser/ui/startup/startup_browser_creator.h" |
| 20 #include "chrome/common/stack_sampling_configuration.h" |
| 21 #include "content/public/browser/browser_main_parts.h" | 21 #include "content/public/browser/browser_main_parts.h" |
| 22 #include "content/public/common/main_function_params.h" | 22 #include "content/public/common/main_function_params.h" |
| 23 | 23 |
| 24 class BrowserProcessImpl; | 24 class BrowserProcessImpl; |
| 25 class ChromeBrowserMainExtraParts; | 25 class ChromeBrowserMainExtraParts; |
| 26 class FieldTrialSynchronizer; | 26 class FieldTrialSynchronizer; |
| 27 class MetricsService; | 27 class MetricsService; |
| 28 class PrefService; | 28 class PrefService; |
| 29 class ProcessPowerCollector; | 29 class ProcessPowerCollector; |
| 30 class Profile; | 30 class Profile; |
| (...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 195 | 195 |
| 196 // Members initialized in PreMainMessageLoopRun, needed in | 196 // Members initialized in PreMainMessageLoopRun, needed in |
| 197 // PreMainMessageLoopRunThreadsCreated. | 197 // PreMainMessageLoopRunThreadsCreated. |
| 198 PrefService* local_state_; | 198 PrefService* local_state_; |
| 199 base::FilePath user_data_dir_; | 199 base::FilePath user_data_dir_; |
| 200 | 200 |
| 201 DISALLOW_COPY_AND_ASSIGN(ChromeBrowserMainParts); | 201 DISALLOW_COPY_AND_ASSIGN(ChromeBrowserMainParts); |
| 202 }; | 202 }; |
| 203 | 203 |
| 204 #endif // CHROME_BROWSER_CHROME_BROWSER_MAIN_H_ | 204 #endif // CHROME_BROWSER_CHROME_BROWSER_MAIN_H_ |
| OLD | NEW |