| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 126 | 126 |
| 127 #if (defined(OS_WIN) || defined(OS_LINUX)) && !defined(OS_CHROMEOS) | 127 #if (defined(OS_WIN) || defined(OS_LINUX)) && !defined(OS_CHROMEOS) |
| 128 virtual void StartAutoupdateTimer() OVERRIDE; | 128 virtual void StartAutoupdateTimer() OVERRIDE; |
| 129 #endif | 129 #endif |
| 130 | 130 |
| 131 virtual ChromeNetLog* net_log() OVERRIDE; | 131 virtual ChromeNetLog* net_log() OVERRIDE; |
| 132 virtual prerender::PrerenderTracker* prerender_tracker() OVERRIDE; | 132 virtual prerender::PrerenderTracker* prerender_tracker() OVERRIDE; |
| 133 virtual ComponentUpdateService* component_updater() OVERRIDE; | 133 virtual ComponentUpdateService* component_updater() OVERRIDE; |
| 134 virtual CRLSetFetcher* crl_set_fetcher() OVERRIDE; | 134 virtual CRLSetFetcher* crl_set_fetcher() OVERRIDE; |
| 135 virtual BookmarkPromptController* bookmark_prompt_controller() OVERRIDE; | 135 virtual BookmarkPromptController* bookmark_prompt_controller() OVERRIDE; |
| 136 virtual ColorChooserController* color_chooser_controller() OVERRIDE; |
| 136 virtual chrome::MediaFileSystemRegistry* | 137 virtual chrome::MediaFileSystemRegistry* |
| 137 media_file_system_registry() OVERRIDE; | 138 media_file_system_registry() OVERRIDE; |
| 138 virtual void PlatformSpecificCommandLineProcessing( | 139 virtual void PlatformSpecificCommandLineProcessing( |
| 139 const CommandLine& command_line) OVERRIDE; | 140 const CommandLine& command_line) OVERRIDE; |
| 140 virtual bool created_local_state() const OVERRIDE; | 141 virtual bool created_local_state() const OVERRIDE; |
| 141 | 142 |
| 142 static void RegisterPrefs(PrefRegistrySimple* registry); | 143 static void RegisterPrefs(PrefRegistrySimple* registry); |
| 143 | 144 |
| 144 private: | 145 private: |
| 145 void CreateMetricsService(); | 146 void CreateMetricsService(); |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 200 scoped_refptr<extensions::EventRouterForwarder> | 201 scoped_refptr<extensions::EventRouterForwarder> |
| 201 extension_event_router_forwarder_; | 202 extension_event_router_forwarder_; |
| 202 | 203 |
| 203 #if !defined(OS_ANDROID) | 204 #if !defined(OS_ANDROID) |
| 204 scoped_ptr<RemoteDebuggingServer> remote_debugging_server_; | 205 scoped_ptr<RemoteDebuggingServer> remote_debugging_server_; |
| 205 | 206 |
| 206 // Bookmark prompt controller displays the prompt for frequently visited URL. | 207 // Bookmark prompt controller displays the prompt for frequently visited URL. |
| 207 scoped_ptr<BookmarkPromptController> bookmark_prompt_controller_; | 208 scoped_ptr<BookmarkPromptController> bookmark_prompt_controller_; |
| 208 #endif | 209 #endif |
| 209 | 210 |
| 211 scoped_ptr<ColorChooserController> color_chooser_controller_; |
| 212 |
| 210 scoped_ptr<chrome::MediaFileSystemRegistry> media_file_system_registry_; | 213 scoped_ptr<chrome::MediaFileSystemRegistry> media_file_system_registry_; |
| 211 | 214 |
| 212 scoped_refptr<printing::PrintPreviewDialogController> | 215 scoped_refptr<printing::PrintPreviewDialogController> |
| 213 print_preview_dialog_controller_; | 216 print_preview_dialog_controller_; |
| 214 | 217 |
| 215 scoped_ptr<printing::BackgroundPrintingManager> background_printing_manager_; | 218 scoped_ptr<printing::BackgroundPrintingManager> background_printing_manager_; |
| 216 | 219 |
| 217 scoped_ptr<chrome_variations::VariationsService> variations_service_; | 220 scoped_ptr<chrome_variations::VariationsService> variations_service_; |
| 218 | 221 |
| 219 // Manager for desktop notification UI. | 222 // Manager for desktop notification UI. |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 310 #endif | 313 #endif |
| 311 | 314 |
| 312 // TODO(eroman): Remove this when done debugging 113031. This tracks | 315 // TODO(eroman): Remove this when done debugging 113031. This tracks |
| 313 // the callstack which released the final module reference count. | 316 // the callstack which released the final module reference count. |
| 314 base::debug::StackTrace release_last_reference_callstack_; | 317 base::debug::StackTrace release_last_reference_callstack_; |
| 315 | 318 |
| 316 DISALLOW_COPY_AND_ASSIGN(BrowserProcessImpl); | 319 DISALLOW_COPY_AND_ASSIGN(BrowserProcessImpl); |
| 317 }; | 320 }; |
| 318 | 321 |
| 319 #endif // CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_ | 322 #endif // CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_ |
| OLD | NEW |