| 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 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 152 void CreateNotificationUIManager(); | 152 void CreateNotificationUIManager(); |
| 153 void CreateStatusTrayManager(); | 153 void CreateStatusTrayManager(); |
| 154 void CreateTabCloseableStateWatcher(); | 154 void CreateTabCloseableStateWatcher(); |
| 155 void CreatePrintPreviewTabController(); | 155 void CreatePrintPreviewTabController(); |
| 156 void CreateBackgroundPrintingManager(); | 156 void CreateBackgroundPrintingManager(); |
| 157 void CreateSafeBrowsingDetectionService(); | 157 void CreateSafeBrowsingDetectionService(); |
| 158 | 158 |
| 159 bool IsSafeBrowsingDetectionServiceEnabled(); | 159 bool IsSafeBrowsingDetectionServiceEnabled(); |
| 160 | 160 |
| 161 void ApplyDisabledSchemesPolicy(); | 161 void ApplyDisabledSchemesPolicy(); |
| 162 void ApplyAllowCrossOriginAuthPromptPolicy(); |
| 162 | 163 |
| 163 #if defined(IPC_MESSAGE_LOG_ENABLED) | 164 #if defined(IPC_MESSAGE_LOG_ENABLED) |
| 164 void SetIPCLoggingEnabledForChildProcesses(bool enabled); | 165 void SetIPCLoggingEnabledForChildProcesses(bool enabled); |
| 165 #endif | 166 #endif |
| 166 | 167 |
| 167 bool created_resource_dispatcher_host_; | 168 bool created_resource_dispatcher_host_; |
| 168 scoped_ptr<ResourceDispatcherHost> resource_dispatcher_host_; | 169 scoped_ptr<ResourceDispatcherHost> resource_dispatcher_host_; |
| 169 | 170 |
| 170 bool created_metrics_service_; | 171 bool created_metrics_service_; |
| 171 scoped_ptr<MetricsService> metrics_service_; | 172 scoped_ptr<MetricsService> metrics_service_; |
| (...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 304 | 305 |
| 305 #if defined(OS_CHROMEOS) | 306 #if defined(OS_CHROMEOS) |
| 306 scoped_refptr<chromeos::ProxyConfigServiceImpl> | 307 scoped_refptr<chromeos::ProxyConfigServiceImpl> |
| 307 chromeos_proxy_config_service_impl_; | 308 chromeos_proxy_config_service_impl_; |
| 308 #endif | 309 #endif |
| 309 | 310 |
| 310 DISALLOW_COPY_AND_ASSIGN(BrowserProcessImpl); | 311 DISALLOW_COPY_AND_ASSIGN(BrowserProcessImpl); |
| 311 }; | 312 }; |
| 312 | 313 |
| 313 #endif // CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_ | 314 #endif // CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_ |
| OLD | NEW |