| 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 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 164 void CreatePrintPreviewTabController(); | 164 void CreatePrintPreviewTabController(); |
| 165 void CreateBackgroundPrintingManager(); | 165 void CreateBackgroundPrintingManager(); |
| 166 void CreateSafeBrowsingService(); | 166 void CreateSafeBrowsingService(); |
| 167 void CreateSafeBrowsingDetectionService(); | 167 void CreateSafeBrowsingDetectionService(); |
| 168 void CreateStatusTray(); | 168 void CreateStatusTray(); |
| 169 void CreateBackgroundModeManager(); | 169 void CreateBackgroundModeManager(); |
| 170 | 170 |
| 171 void ApplyDisabledSchemesPolicy(); | 171 void ApplyDisabledSchemesPolicy(); |
| 172 void ApplyAllowCrossOriginAuthPromptPolicy(); | 172 void ApplyAllowCrossOriginAuthPromptPolicy(); |
| 173 void ApplyDefaultBrowserPolicy(); | 173 void ApplyDefaultBrowserPolicy(); |
| 174 void ApplyCloudPrintConnectorPolicy(); |
| 175 void ApplyCloudPrintConnectorPolicyToProfile(Profile* profile); |
| 174 | 176 |
| 175 #if defined(IPC_MESSAGE_LOG_ENABLED) | 177 #if defined(IPC_MESSAGE_LOG_ENABLED) |
| 176 void SetIPCLoggingEnabledForChildProcesses(bool enabled); | 178 void SetIPCLoggingEnabledForChildProcesses(bool enabled); |
| 177 #endif | 179 #endif |
| 178 | 180 |
| 179 bool created_resource_dispatcher_host_; | 181 bool created_resource_dispatcher_host_; |
| 180 scoped_ptr<ResourceDispatcherHost> resource_dispatcher_host_; | 182 scoped_ptr<ResourceDispatcherHost> resource_dispatcher_host_; |
| 181 | 183 |
| 182 bool created_metrics_service_; | 184 bool created_metrics_service_; |
| 183 scoped_ptr<MetricsService> metrics_service_; | 185 scoped_ptr<MetricsService> metrics_service_; |
| (...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 322 #if !defined(OS_CHROMEOS) | 324 #if !defined(OS_CHROMEOS) |
| 323 scoped_ptr<ComponentUpdateService> component_updater_; | 325 scoped_ptr<ComponentUpdateService> component_updater_; |
| 324 | 326 |
| 325 scoped_refptr<CRLSetFetcher> crl_set_fetcher_; | 327 scoped_refptr<CRLSetFetcher> crl_set_fetcher_; |
| 326 #endif | 328 #endif |
| 327 | 329 |
| 328 DISALLOW_COPY_AND_ASSIGN(BrowserProcessImpl); | 330 DISALLOW_COPY_AND_ASSIGN(BrowserProcessImpl); |
| 329 }; | 331 }; |
| 330 | 332 |
| 331 #endif // CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_ | 333 #endif // CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_ |
| OLD | NEW |