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

Side by Side Diff: chrome/browser/browser_process_impl.h

Issue 1658793002: Update chrome for new prefs location. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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/browser_encoding_browsertest.cc ('k') | chrome/browser/browser_process_impl.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 // When each service is created, we set a flag indicating this. At this point, 5 // When each service is created, we set a flag indicating this. At this point,
6 // the service initialization could fail or succeed. This allows us to remember 6 // the service initialization could fail or succeed. This allows us to remember
7 // if we tried to create a service, and not try creating it over and over if 7 // if we tried to create a service, and not try creating it over and over if
8 // the creation failed. 8 // the creation failed.
9 9
10 #ifndef CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_ 10 #ifndef CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_
11 #define CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_ 11 #define CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_
12 12
13 #include <stdint.h> 13 #include <stdint.h>
14 14
15 #include <string> 15 #include <string>
16 16
17 #include "base/debug/stack_trace.h" 17 #include "base/debug/stack_trace.h"
18 #include "base/macros.h" 18 #include "base/macros.h"
19 #include "base/memory/ref_counted.h" 19 #include "base/memory/ref_counted.h"
20 #include "base/memory/scoped_ptr.h" 20 #include "base/memory/scoped_ptr.h"
21 #include "base/prefs/pref_change_registrar.h"
22 #include "base/threading/non_thread_safe.h" 21 #include "base/threading/non_thread_safe.h"
23 #include "base/timer/timer.h" 22 #include "base/timer/timer.h"
24 #include "build/build_config.h" 23 #include "build/build_config.h"
25 #include "chrome/browser/browser_process.h" 24 #include "chrome/browser/browser_process.h"
25 #include "components/prefs/pref_change_registrar.h"
26 26
27 class ChromeChildProcessWatcher; 27 class ChromeChildProcessWatcher;
28 class ChromeDeviceClient; 28 class ChromeDeviceClient;
29 class ChromeResourceDispatcherHostDelegate; 29 class ChromeResourceDispatcherHostDelegate;
30 class RemoteDebuggingServer; 30 class RemoteDebuggingServer;
31 class PrefRegistrySimple; 31 class PrefRegistrySimple;
32 32
33 #if defined(ENABLE_PLUGIN_INSTALLATION) 33 #if defined(ENABLE_PLUGIN_INSTALLATION)
34 class PluginsResourceService; 34 class PluginsResourceService;
35 #endif 35 #endif
(...skipping 295 matching lines...) Expand 10 before | Expand all | Expand 10 after
331 // chrome/browser/memory/tab_manager_browsertest.cc 331 // chrome/browser/memory/tab_manager_browsertest.cc
332 scoped_ptr<memory::TabManager> tab_manager_; 332 scoped_ptr<memory::TabManager> tab_manager_;
333 #endif 333 #endif
334 334
335 ShellIntegration::DefaultWebClientState cached_default_web_client_state_; 335 ShellIntegration::DefaultWebClientState cached_default_web_client_state_;
336 336
337 DISALLOW_COPY_AND_ASSIGN(BrowserProcessImpl); 337 DISALLOW_COPY_AND_ASSIGN(BrowserProcessImpl);
338 }; 338 };
339 339
340 #endif // CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_ 340 #endif // CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_
OLDNEW
« no previous file with comments | « chrome/browser/browser_encoding_browsertest.cc ('k') | chrome/browser/browser_process_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698