Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(54)

Side by Side Diff: chrome/browser/chrome_browser_main.cc

Issue 2510803003: Pass RapporService to content/browser/ (Closed)
Patch Set: Fix more compile errors in JNI files Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 #include "components/metrics/metrics_service.h" 124 #include "components/metrics/metrics_service.h"
125 #include "components/metrics/profiler/content/content_tracking_synchronizer_dele gate.h" 125 #include "components/metrics/profiler/content/content_tracking_synchronizer_dele gate.h"
126 #include "components/metrics/profiler/tracking_synchronizer.h" 126 #include "components/metrics/profiler/tracking_synchronizer.h"
127 #include "components/metrics_services_manager/metrics_services_manager.h" 127 #include "components/metrics_services_manager/metrics_services_manager.h"
128 #include "components/nacl/browser/nacl_browser.h" 128 #include "components/nacl/browser/nacl_browser.h"
129 #include "components/prefs/json_pref_store.h" 129 #include "components/prefs/json_pref_store.h"
130 #include "components/prefs/pref_registry_simple.h" 130 #include "components/prefs/pref_registry_simple.h"
131 #include "components/prefs/pref_service.h" 131 #include "components/prefs/pref_service.h"
132 #include "components/prefs/pref_value_store.h" 132 #include "components/prefs/pref_value_store.h"
133 #include "components/prefs/scoped_user_pref_update.h" 133 #include "components/prefs/scoped_user_pref_update.h"
134 #include "components/rappor/rappor_service.h" 134 #include "components/rappor/rappor_service_impl.h"
135 #include "components/signin/core/common/profile_management_switches.h" 135 #include "components/signin/core/common/profile_management_switches.h"
136 #include "components/startup_metric_utils/browser/startup_metric_utils.h" 136 #include "components/startup_metric_utils/browser/startup_metric_utils.h"
137 #include "components/task_scheduler_util/initialization_util.h" 137 #include "components/task_scheduler_util/initialization_util.h"
138 #include "components/tracing/common/tracing_switches.h" 138 #include "components/tracing/common/tracing_switches.h"
139 #include "components/translate/core/browser/translate_download_manager.h" 139 #include "components/translate/core/browser/translate_download_manager.h"
140 #include "components/variations/field_trial_config/field_trial_util.h" 140 #include "components/variations/field_trial_config/field_trial_util.h"
141 #include "components/variations/pref_names.h" 141 #include "components/variations/pref_names.h"
142 #include "components/variations/service/variations_service.h" 142 #include "components/variations/service/variations_service.h"
143 #include "components/variations/variations_associated_data.h" 143 #include "components/variations/variations_associated_data.h"
144 #include "components/variations/variations_http_header_provider.h" 144 #include "components/variations/variations_http_header_provider.h"
(...skipping 1951 matching lines...) Expand 10 before | Expand all | Expand 10 after
2096 chromeos::CrosSettings::Shutdown(); 2096 chromeos::CrosSettings::Shutdown();
2097 #endif // defined(OS_CHROMEOS) 2097 #endif // defined(OS_CHROMEOS)
2098 #endif // defined(OS_ANDROID) 2098 #endif // defined(OS_ANDROID)
2099 } 2099 }
2100 2100
2101 // Public members: 2101 // Public members:
2102 2102
2103 void ChromeBrowserMainParts::AddParts(ChromeBrowserMainExtraParts* parts) { 2103 void ChromeBrowserMainParts::AddParts(ChromeBrowserMainExtraParts* parts) {
2104 chrome_extra_parts_.push_back(parts); 2104 chrome_extra_parts_.push_back(parts);
2105 } 2105 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698