OLD | NEW |
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 Loading... |
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 Loading... |
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_ |
OLD | NEW |