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

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

Issue 6979011: Move user cloud policy to BrowserProcess. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed comments by mnissler. Created 9 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 | Annotate | Revision Log
« no previous file with comments | « chrome/browser/browser_main.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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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_
(...skipping 19 matching lines...) Expand all
30 class ChromeNetLog; 30 class ChromeNetLog;
31 class ChromeResourceDispatcherHostDelegate; 31 class ChromeResourceDispatcherHostDelegate;
32 class CommandLine; 32 class CommandLine;
33 class DevToolsHttpProtocolHandler; 33 class DevToolsHttpProtocolHandler;
34 class DevToolsProtocolHandler; 34 class DevToolsProtocolHandler;
35 class FilePath; 35 class FilePath;
36 class NotificationService; 36 class NotificationService;
37 class PluginDataRemover; 37 class PluginDataRemover;
38 class TabCloseableStateWatcher; 38 class TabCloseableStateWatcher;
39 39
40 namespace policy{
41 class BrowserPolicyConnector;
42 };
43
40 // Real implementation of BrowserProcess that creates and returns the services. 44 // Real implementation of BrowserProcess that creates and returns the services.
41 class BrowserProcessImpl : public BrowserProcess, 45 class BrowserProcessImpl : public BrowserProcess,
42 public base::NonThreadSafe, 46 public base::NonThreadSafe,
43 public NotificationObserver { 47 public NotificationObserver {
44 public: 48 public:
45 explicit BrowserProcessImpl(const CommandLine& command_line); 49 explicit BrowserProcessImpl(const CommandLine& command_line);
46 virtual ~BrowserProcessImpl(); 50 virtual ~BrowserProcessImpl();
47 51
48 virtual void EndSession(); 52 virtual void EndSession();
49 53
(...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after
311 315
312 #if defined(OS_CHROMEOS) 316 #if defined(OS_CHROMEOS)
313 scoped_refptr<chromeos::ProxyConfigServiceImpl> 317 scoped_refptr<chromeos::ProxyConfigServiceImpl>
314 chromeos_proxy_config_service_impl_; 318 chromeos_proxy_config_service_impl_;
315 #endif 319 #endif
316 320
317 DISALLOW_COPY_AND_ASSIGN(BrowserProcessImpl); 321 DISALLOW_COPY_AND_ASSIGN(BrowserProcessImpl);
318 }; 322 };
319 323
320 #endif // CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_ 324 #endif // CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_
OLDNEW
« no previous file with comments | « chrome/browser/browser_main.cc ('k') | chrome/browser/browser_process_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698