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

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

Issue 2028043002: tracing: restructure to the components/tracing folder (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 months 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 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 #include "components/metrics_services_manager/metrics_services_manager.h" 123 #include "components/metrics_services_manager/metrics_services_manager.h"
124 #include "components/nacl/browser/nacl_browser.h" 124 #include "components/nacl/browser/nacl_browser.h"
125 #include "components/prefs/json_pref_store.h" 125 #include "components/prefs/json_pref_store.h"
126 #include "components/prefs/pref_registry_simple.h" 126 #include "components/prefs/pref_registry_simple.h"
127 #include "components/prefs/pref_service.h" 127 #include "components/prefs/pref_service.h"
128 #include "components/prefs/pref_value_store.h" 128 #include "components/prefs/pref_value_store.h"
129 #include "components/prefs/scoped_user_pref_update.h" 129 #include "components/prefs/scoped_user_pref_update.h"
130 #include "components/rappor/rappor_service.h" 130 #include "components/rappor/rappor_service.h"
131 #include "components/signin/core/common/profile_management_switches.h" 131 #include "components/signin/core/common/profile_management_switches.h"
132 #include "components/startup_metric_utils/browser/startup_metric_utils.h" 132 #include "components/startup_metric_utils/browser/startup_metric_utils.h"
133 #include "components/tracing/tracing_switches.h" 133 #include "components/tracing/common/tracing_switches.h"
134 #include "components/translate/content/browser/browser_cld_utils.h" 134 #include "components/translate/content/browser/browser_cld_utils.h"
135 #include "components/translate/content/common/cld_data_source.h" 135 #include "components/translate/content/common/cld_data_source.h"
136 #include "components/translate/core/browser/translate_download_manager.h" 136 #include "components/translate/core/browser/translate_download_manager.h"
137 #include "components/variations/pref_names.h" 137 #include "components/variations/pref_names.h"
138 #include "components/variations/service/variations_service.h" 138 #include "components/variations/service/variations_service.h"
139 #include "components/variations/variations_associated_data.h" 139 #include "components/variations/variations_associated_data.h"
140 #include "components/variations/variations_http_header_provider.h" 140 #include "components/variations/variations_http_header_provider.h"
141 #include "components/variations/variations_switches.h" 141 #include "components/variations/variations_switches.h"
142 #include "components/version_info/version_info.h" 142 #include "components/version_info/version_info.h"
143 #include "content/public/browser/browser_thread.h" 143 #include "content/public/browser/browser_thread.h"
(...skipping 1848 matching lines...) Expand 10 before | Expand all | Expand 10 after
1992 chromeos::CrosSettings::Shutdown(); 1992 chromeos::CrosSettings::Shutdown();
1993 #endif // defined(OS_CHROMEOS) 1993 #endif // defined(OS_CHROMEOS)
1994 #endif // defined(OS_ANDROID) 1994 #endif // defined(OS_ANDROID)
1995 } 1995 }
1996 1996
1997 // Public members: 1997 // Public members:
1998 1998
1999 void ChromeBrowserMainParts::AddParts(ChromeBrowserMainExtraParts* parts) { 1999 void ChromeBrowserMainParts::AddParts(ChromeBrowserMainExtraParts* parts) {
2000 chrome_extra_parts_.push_back(parts); 2000 chrome_extra_parts_.push_back(parts);
2001 } 2001 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698