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

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

Issue 19631004: Update include paths in chrome/browser/ for base/process changes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 5 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 | Annotate | Revision Log
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 #if defined(TOOLKIT_GTK) 7 #if defined(TOOLKIT_GTK)
8 #include <gtk/gtk.h> 8 #include <gtk/gtk.h>
9 #endif 9 #endif
10 10
11 #include <string> 11 #include <string>
12 #include <vector> 12 #include <vector>
13 13
14 #include "base/at_exit.h" 14 #include "base/at_exit.h"
15 #include "base/bind.h" 15 #include "base/bind.h"
16 #include "base/command_line.h" 16 #include "base/command_line.h"
17 #include "base/debug/debugger.h" 17 #include "base/debug/debugger.h"
18 #include "base/debug/trace_event.h" 18 #include "base/debug/trace_event.h"
19 #include "base/file_util.h" 19 #include "base/file_util.h"
20 #include "base/files/file_path.h" 20 #include "base/files/file_path.h"
21 #include "base/metrics/field_trial.h" 21 #include "base/metrics/field_trial.h"
22 #include "base/metrics/histogram.h" 22 #include "base/metrics/histogram.h"
23 #include "base/path_service.h" 23 #include "base/path_service.h"
24 #include "base/prefs/json_pref_store.h" 24 #include "base/prefs/json_pref_store.h"
25 #include "base/prefs/pref_registry_simple.h" 25 #include "base/prefs/pref_registry_simple.h"
26 #include "base/prefs/pref_service.h" 26 #include "base/prefs/pref_service.h"
27 #include "base/prefs/pref_value_store.h" 27 #include "base/prefs/pref_value_store.h"
28 #include "base/process_info.h" 28 #include "base/process/process_info.h"
29 #include "base/process_util.h"
30 #include "base/run_loop.h" 29 #include "base/run_loop.h"
31 #include "base/strings/string_number_conversions.h" 30 #include "base/strings/string_number_conversions.h"
32 #include "base/strings/string_piece.h" 31 #include "base/strings/string_piece.h"
33 #include "base/strings/string_split.h" 32 #include "base/strings/string_split.h"
34 #include "base/strings/sys_string_conversions.h" 33 #include "base/strings/sys_string_conversions.h"
35 #include "base/strings/utf_string_conversions.h" 34 #include "base/strings/utf_string_conversions.h"
36 #include "base/sys_info.h" 35 #include "base/sys_info.h"
37 #include "base/threading/platform_thread.h" 36 #include "base/threading/platform_thread.h"
38 #include "base/time/time.h" 37 #include "base/time/time.h"
39 #include "base/values.h" 38 #include "base/values.h"
(...skipping 1696 matching lines...) Expand 10 before | Expand all | Expand 10 after
1736 chromeos::CrosSettings::Shutdown(); 1735 chromeos::CrosSettings::Shutdown();
1737 #endif 1736 #endif
1738 #endif 1737 #endif
1739 } 1738 }
1740 1739
1741 // Public members: 1740 // Public members:
1742 1741
1743 void ChromeBrowserMainParts::AddParts(ChromeBrowserMainExtraParts* parts) { 1742 void ChromeBrowserMainParts::AddParts(ChromeBrowserMainExtraParts* parts) {
1744 chrome_extra_parts_.push_back(parts); 1743 chrome_extra_parts_.push_back(parts);
1745 } 1744 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698