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 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
159 void CreateNotificationUIManager(); | 159 void CreateNotificationUIManager(); |
160 void CreateStatusTrayManager(); | 160 void CreateStatusTrayManager(); |
161 void CreateTabCloseableStateWatcher(); | 161 void CreateTabCloseableStateWatcher(); |
162 void CreatePrintPreviewTabController(); | 162 void CreatePrintPreviewTabController(); |
163 void CreateBackgroundPrintingManager(); | 163 void CreateBackgroundPrintingManager(); |
164 void CreateSafeBrowsingService(); | 164 void CreateSafeBrowsingService(); |
165 void CreateSafeBrowsingDetectionService(); | 165 void CreateSafeBrowsingDetectionService(); |
166 void CreateStatusTray(); | 166 void CreateStatusTray(); |
167 void CreateBackgroundModeManager(); | 167 void CreateBackgroundModeManager(); |
168 | 168 |
169 bool IsSafeBrowsingDetectionServiceEnabled(); | |
170 | |
171 void ApplyDisabledSchemesPolicy(); | 169 void ApplyDisabledSchemesPolicy(); |
172 void ApplyAllowCrossOriginAuthPromptPolicy(); | 170 void ApplyAllowCrossOriginAuthPromptPolicy(); |
173 | 171 |
174 #if defined(IPC_MESSAGE_LOG_ENABLED) | 172 #if defined(IPC_MESSAGE_LOG_ENABLED) |
175 void SetIPCLoggingEnabledForChildProcesses(bool enabled); | 173 void SetIPCLoggingEnabledForChildProcesses(bool enabled); |
176 #endif | 174 #endif |
177 | 175 |
178 bool created_resource_dispatcher_host_; | 176 bool created_resource_dispatcher_host_; |
179 scoped_ptr<ResourceDispatcherHost> resource_dispatcher_host_; | 177 scoped_ptr<ResourceDispatcherHost> resource_dispatcher_host_; |
180 | 178 |
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
319 scoped_refptr<GpuBlacklistUpdater> gpu_blacklist_updater_; | 317 scoped_refptr<GpuBlacklistUpdater> gpu_blacklist_updater_; |
320 | 318 |
321 #if !defined(OS_CHROMEOS) | 319 #if !defined(OS_CHROMEOS) |
322 scoped_ptr<ComponentUpdateService> component_updater_; | 320 scoped_ptr<ComponentUpdateService> component_updater_; |
323 #endif | 321 #endif |
324 | 322 |
325 DISALLOW_COPY_AND_ASSIGN(BrowserProcessImpl); | 323 DISALLOW_COPY_AND_ASSIGN(BrowserProcessImpl); |
326 }; | 324 }; |
327 | 325 |
328 #endif // CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_ | 326 #endif // CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_ |
OLD | NEW |