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

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

Issue 877323002: Mechanical rename of tracing includes for /chrome (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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
« no previous file with comments | « chrome/browser/android/tab_android.cc ('k') | chrome/browser/chrome_browser_main_android.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 <set> 7 #include <set>
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
11 #include "base/at_exit.h" 11 #include "base/at_exit.h"
12 #include "base/bind.h" 12 #include "base/bind.h"
13 #include "base/command_line.h" 13 #include "base/command_line.h"
14 #include "base/debug/crash_logging.h" 14 #include "base/debug/crash_logging.h"
15 #include "base/debug/debugger.h" 15 #include "base/debug/debugger.h"
16 #include "base/debug/trace_event.h"
17 #include "base/files/file_path.h" 16 #include "base/files/file_path.h"
18 #include "base/files/file_util.h" 17 #include "base/files/file_util.h"
19 #include "base/metrics/field_trial.h" 18 #include "base/metrics/field_trial.h"
20 #include "base/metrics/histogram.h" 19 #include "base/metrics/histogram.h"
21 #include "base/path_service.h" 20 #include "base/path_service.h"
22 #include "base/prefs/json_pref_store.h" 21 #include "base/prefs/json_pref_store.h"
23 #include "base/prefs/pref_registry_simple.h" 22 #include "base/prefs/pref_registry_simple.h"
24 #include "base/prefs/pref_service.h" 23 #include "base/prefs/pref_service.h"
25 #include "base/prefs/pref_value_store.h" 24 #include "base/prefs/pref_value_store.h"
26 #include "base/prefs/scoped_user_pref_update.h" 25 #include "base/prefs/scoped_user_pref_update.h"
27 #include "base/process/process_info.h" 26 #include "base/process/process_info.h"
28 #include "base/profiler/scoped_tracker.h" 27 #include "base/profiler/scoped_tracker.h"
29 #include "base/run_loop.h" 28 #include "base/run_loop.h"
30 #include "base/strings/string_number_conversions.h" 29 #include "base/strings/string_number_conversions.h"
31 #include "base/strings/string_piece.h" 30 #include "base/strings/string_piece.h"
32 #include "base/strings/string_split.h" 31 #include "base/strings/string_split.h"
33 #include "base/strings/sys_string_conversions.h" 32 #include "base/strings/sys_string_conversions.h"
34 #include "base/strings/utf_string_conversions.h" 33 #include "base/strings/utf_string_conversions.h"
35 #include "base/sys_info.h" 34 #include "base/sys_info.h"
36 #include "base/threading/platform_thread.h" 35 #include "base/threading/platform_thread.h"
37 #include "base/time/time.h" 36 #include "base/time/time.h"
37 #include "base/trace_event/trace_event.h"
38 #include "base/values.h" 38 #include "base/values.h"
39 #include "build/build_config.h" 39 #include "build/build_config.h"
40 #include "cc/base/switches.h" 40 #include "cc/base/switches.h"
41 #include "chrome/browser/about_flags.h" 41 #include "chrome/browser/about_flags.h"
42 #include "chrome/browser/browser_process.h" 42 #include "chrome/browser/browser_process.h"
43 #include "chrome/browser/browser_process_impl.h" 43 #include "chrome/browser/browser_process_impl.h"
44 #include "chrome/browser/browser_process_platform_part.h" 44 #include "chrome/browser/browser_process_platform_part.h"
45 #include "chrome/browser/browser_shutdown.h" 45 #include "chrome/browser/browser_shutdown.h"
46 #include "chrome/browser/chrome_browser_main_extra_parts.h" 46 #include "chrome/browser/chrome_browser_main_extra_parts.h"
47 #include "chrome/browser/component_updater/cld_component_installer.h" 47 #include "chrome/browser/component_updater/cld_component_installer.h"
(...skipping 1662 matching lines...) Expand 10 before | Expand all | Expand 10 after
1710 chromeos::CrosSettings::Shutdown(); 1710 chromeos::CrosSettings::Shutdown();
1711 #endif 1711 #endif
1712 #endif 1712 #endif
1713 } 1713 }
1714 1714
1715 // Public members: 1715 // Public members:
1716 1716
1717 void ChromeBrowserMainParts::AddParts(ChromeBrowserMainExtraParts* parts) { 1717 void ChromeBrowserMainParts::AddParts(ChromeBrowserMainExtraParts* parts) {
1718 chrome_extra_parts_.push_back(parts); 1718 chrome_extra_parts_.push_back(parts);
1719 } 1719 }
OLDNEW
« no previous file with comments | « chrome/browser/android/tab_android.cc ('k') | chrome/browser/chrome_browser_main_android.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698