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 <set> | 7 #include <set> |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
116 #include "components/metrics/profiler/tracking_synchronizer.h" | 116 #include "components/metrics/profiler/tracking_synchronizer.h" |
117 #include "components/metrics_services_manager/metrics_services_manager.h" | 117 #include "components/metrics_services_manager/metrics_services_manager.h" |
118 #include "components/nacl/browser/nacl_browser.h" | 118 #include "components/nacl/browser/nacl_browser.h" |
119 #include "components/rappor/rappor_service.h" | 119 #include "components/rappor/rappor_service.h" |
120 #include "components/signin/core/common/profile_management_switches.h" | 120 #include "components/signin/core/common/profile_management_switches.h" |
121 #include "components/startup_metric_utils/browser/startup_metric_utils.h" | 121 #include "components/startup_metric_utils/browser/startup_metric_utils.h" |
122 #include "components/tracing/tracing_switches.h" | 122 #include "components/tracing/tracing_switches.h" |
123 #include "components/translate/content/browser/browser_cld_utils.h" | 123 #include "components/translate/content/browser/browser_cld_utils.h" |
124 #include "components/translate/content/common/cld_data_source.h" | 124 #include "components/translate/content/common/cld_data_source.h" |
125 #include "components/translate/core/browser/translate_download_manager.h" | 125 #include "components/translate/core/browser/translate_download_manager.h" |
126 #include "components/variations/net/variations_http_header_provider.h" | |
127 #include "components/variations/pref_names.h" | 126 #include "components/variations/pref_names.h" |
128 #include "components/variations/service/variations_service.h" | 127 #include "components/variations/service/variations_service.h" |
129 #include "components/variations/variations_associated_data.h" | 128 #include "components/variations/variations_associated_data.h" |
| 129 #include "components/variations/variations_http_header_provider.h" |
130 #include "components/variations/variations_switches.h" | 130 #include "components/variations/variations_switches.h" |
131 #include "components/version_info/version_info.h" | 131 #include "components/version_info/version_info.h" |
132 #include "content/public/browser/browser_thread.h" | 132 #include "content/public/browser/browser_thread.h" |
133 #include "content/public/browser/notification_observer.h" | 133 #include "content/public/browser/notification_observer.h" |
134 #include "content/public/browser/notification_registrar.h" | 134 #include "content/public/browser/notification_registrar.h" |
135 #include "content/public/browser/notification_service.h" | 135 #include "content/public/browser/notification_service.h" |
136 #include "content/public/browser/notification_types.h" | 136 #include "content/public/browser/notification_types.h" |
137 #include "content/public/browser/power_usage_monitor.h" | 137 #include "content/public/browser/power_usage_monitor.h" |
138 #include "content/public/browser/site_instance.h" | 138 #include "content/public/browser/site_instance.h" |
139 #include "content/public/common/content_client.h" | 139 #include "content/public/common/content_client.h" |
(...skipping 1768 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1908 chromeos::CrosSettings::Shutdown(); | 1908 chromeos::CrosSettings::Shutdown(); |
1909 #endif // defined(OS_CHROMEOS) | 1909 #endif // defined(OS_CHROMEOS) |
1910 #endif // defined(OS_ANDROID) | 1910 #endif // defined(OS_ANDROID) |
1911 } | 1911 } |
1912 | 1912 |
1913 // Public members: | 1913 // Public members: |
1914 | 1914 |
1915 void ChromeBrowserMainParts::AddParts(ChromeBrowserMainExtraParts* parts) { | 1915 void ChromeBrowserMainParts::AddParts(ChromeBrowserMainExtraParts* parts) { |
1916 chrome_extra_parts_.push_back(parts); | 1916 chrome_extra_parts_.push_back(parts); |
1917 } | 1917 } |
OLD | NEW |