| 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 12 matching lines...) Expand all Loading... |
| 23 #include "chrome/browser/prefs/pref_member.h" | 23 #include "chrome/browser/prefs/pref_member.h" |
| 24 #include "content/public/browser/notification_observer.h" | 24 #include "content/public/browser/notification_observer.h" |
| 25 #include "content/public/browser/notification_registrar.h" | 25 #include "content/public/browser/notification_registrar.h" |
| 26 #include "ipc/ipc_message.h" | 26 #include "ipc/ipc_message.h" |
| 27 | 27 |
| 28 class BrowserOnlineStateObserver; | 28 class BrowserOnlineStateObserver; |
| 29 class ChromeNetLog; | 29 class ChromeNetLog; |
| 30 class ChromeResourceDispatcherHostDelegate; | 30 class ChromeResourceDispatcherHostDelegate; |
| 31 class CommandLine; | 31 class CommandLine; |
| 32 class DevToolsProtocolHandler; | 32 class DevToolsProtocolHandler; |
| 33 class FilePath; | |
| 34 class PluginDataRemover; | |
| 35 class RemoteDebuggingServer; | 33 class RemoteDebuggingServer; |
| 36 class TabCloseableStateWatcher; | 34 class TabCloseableStateWatcher; |
| 37 | 35 |
| 38 namespace policy { | 36 namespace policy { |
| 39 class BrowserPolicyConnector; | 37 class BrowserPolicyConnector; |
| 40 }; | 38 }; |
| 41 | 39 |
| 42 // Real implementation of BrowserProcess that creates and returns the services. | 40 // Real implementation of BrowserProcess that creates and returns the services. |
| 43 class BrowserProcessImpl : public BrowserProcess, | 41 class BrowserProcessImpl : public BrowserProcess, |
| 44 public base::NonThreadSafe, | 42 public base::NonThreadSafe, |
| (...skipping 273 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 318 #if !defined(OS_CHROMEOS) | 316 #if !defined(OS_CHROMEOS) |
| 319 scoped_ptr<ComponentUpdateService> component_updater_; | 317 scoped_ptr<ComponentUpdateService> component_updater_; |
| 320 | 318 |
| 321 scoped_refptr<CRLSetFetcher> crl_set_fetcher_; | 319 scoped_refptr<CRLSetFetcher> crl_set_fetcher_; |
| 322 #endif | 320 #endif |
| 323 | 321 |
| 324 DISALLOW_COPY_AND_ASSIGN(BrowserProcessImpl); | 322 DISALLOW_COPY_AND_ASSIGN(BrowserProcessImpl); |
| 325 }; | 323 }; |
| 326 | 324 |
| 327 #endif // CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_ | 325 #endif // CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_ |
| OLD | NEW |