| 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 #include "chrome/browser/chrome_browser_main.h" | 5 #include "chrome/browser/chrome_browser_main.h" |
| 6 | 6 |
| 7 #include <stddef.h> | 7 #include <stddef.h> |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <set> | 10 #include <set> |
| (...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 125 #include "components/metrics/metrics_service.h" | 125 #include "components/metrics/metrics_service.h" |
| 126 #include "components/metrics/profiler/content/content_tracking_synchronizer_dele
gate.h" | 126 #include "components/metrics/profiler/content/content_tracking_synchronizer_dele
gate.h" |
| 127 #include "components/metrics/profiler/tracking_synchronizer.h" | 127 #include "components/metrics/profiler/tracking_synchronizer.h" |
| 128 #include "components/metrics_services_manager/metrics_services_manager.h" | 128 #include "components/metrics_services_manager/metrics_services_manager.h" |
| 129 #include "components/nacl/browser/nacl_browser.h" | 129 #include "components/nacl/browser/nacl_browser.h" |
| 130 #include "components/prefs/json_pref_store.h" | 130 #include "components/prefs/json_pref_store.h" |
| 131 #include "components/prefs/pref_registry_simple.h" | 131 #include "components/prefs/pref_registry_simple.h" |
| 132 #include "components/prefs/pref_service.h" | 132 #include "components/prefs/pref_service.h" |
| 133 #include "components/prefs/pref_value_store.h" | 133 #include "components/prefs/pref_value_store.h" |
| 134 #include "components/prefs/scoped_user_pref_update.h" | 134 #include "components/prefs/scoped_user_pref_update.h" |
| 135 #include "components/rappor/rappor_service.h" | 135 #include "components/rappor/rappor_service_impl.h" |
| 136 #include "components/signin/core/common/profile_management_switches.h" | 136 #include "components/signin/core/common/profile_management_switches.h" |
| 137 #include "components/startup_metric_utils/browser/startup_metric_utils.h" | 137 #include "components/startup_metric_utils/browser/startup_metric_utils.h" |
| 138 #include "components/task_scheduler_util/initialization_util.h" | 138 #include "components/task_scheduler_util/initialization_util.h" |
| 139 #include "components/tracing/common/tracing_switches.h" | 139 #include "components/tracing/common/tracing_switches.h" |
| 140 #include "components/translate/core/browser/translate_download_manager.h" | 140 #include "components/translate/core/browser/translate_download_manager.h" |
| 141 #include "components/variations/field_trial_config/field_trial_util.h" | 141 #include "components/variations/field_trial_config/field_trial_util.h" |
| 142 #include "components/variations/pref_names.h" | 142 #include "components/variations/pref_names.h" |
| 143 #include "components/variations/service/variations_service.h" | 143 #include "components/variations/service/variations_service.h" |
| 144 #include "components/variations/variations_associated_data.h" | 144 #include "components/variations/variations_associated_data.h" |
| 145 #include "components/variations/variations_http_header_provider.h" | 145 #include "components/variations/variations_http_header_provider.h" |
| (...skipping 1947 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2093 chromeos::CrosSettings::Shutdown(); | 2093 chromeos::CrosSettings::Shutdown(); |
| 2094 #endif // defined(OS_CHROMEOS) | 2094 #endif // defined(OS_CHROMEOS) |
| 2095 #endif // defined(OS_ANDROID) | 2095 #endif // defined(OS_ANDROID) |
| 2096 } | 2096 } |
| 2097 | 2097 |
| 2098 // Public members: | 2098 // Public members: |
| 2099 | 2099 |
| 2100 void ChromeBrowserMainParts::AddParts(ChromeBrowserMainExtraParts* parts) { | 2100 void ChromeBrowserMainParts::AddParts(ChromeBrowserMainExtraParts* parts) { |
| 2101 chrome_extra_parts_.push_back(parts); | 2101 chrome_extra_parts_.push_back(parts); |
| 2102 } | 2102 } |
| OLD | NEW |