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 ChromeResourceDispatcherHostObserver; | 31 class ChromeResourceDispatcherHostObserver; |
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 }; | |
Joao da Silva
2011/06/03 12:23:51
This is already forward-declared in browser_proces
sfeuz
2011/06/03 16:19:29
I think we should forward declare again here accor
| |
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 259 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
309 | 313 |
310 #if defined(OS_CHROMEOS) | 314 #if defined(OS_CHROMEOS) |
311 scoped_refptr<chromeos::ProxyConfigServiceImpl> | 315 scoped_refptr<chromeos::ProxyConfigServiceImpl> |
312 chromeos_proxy_config_service_impl_; | 316 chromeos_proxy_config_service_impl_; |
313 #endif | 317 #endif |
314 | 318 |
315 DISALLOW_COPY_AND_ASSIGN(BrowserProcessImpl); | 319 DISALLOW_COPY_AND_ASSIGN(BrowserProcessImpl); |
316 }; | 320 }; |
317 | 321 |
318 #endif // CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_ | 322 #endif // CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_ |
OLD | NEW |