| 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 // This interface is for managing the global services of the application. Each | 5 // This interface is for managing the global services of the application. Each |
| 6 // service is lazily created when requested the first time. The service getters | 6 // service is lazily created when requested the first time. The service getters |
| 7 // will return NULL if the service is not available, so callers must check for | 7 // will return NULL if the service is not available, so callers must check for |
| 8 // this condition. | 8 // this condition. |
| 9 | 9 |
| 10 #ifndef CHROME_BROWSER_BROWSER_PROCESS_H_ | 10 #ifndef CHROME_BROWSER_BROWSER_PROCESS_H_ |
| (...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 177 virtual policy::PolicyService* policy_service() = 0; | 177 virtual policy::PolicyService* policy_service() = 0; |
| 178 | 178 |
| 179 virtual IconManager* icon_manager() = 0; | 179 virtual IconManager* icon_manager() = 0; |
| 180 | 180 |
| 181 virtual GLStringManager* gl_string_manager() = 0; | 181 virtual GLStringManager* gl_string_manager() = 0; |
| 182 | 182 |
| 183 virtual GpuModeManager* gpu_mode_manager() = 0; | 183 virtual GpuModeManager* gpu_mode_manager() = 0; |
| 184 | 184 |
| 185 virtual void CreateDevToolsHttpProtocolHandler(const std::string& ip, | 185 virtual void CreateDevToolsHttpProtocolHandler(const std::string& ip, |
| 186 uint16_t port) = 0; | 186 uint16_t port) = 0; |
| 187 virtual void CreateDevToolsAutoOpener() = 0; |
| 187 | 188 |
| 188 virtual unsigned int AddRefModule() = 0; | 189 virtual unsigned int AddRefModule() = 0; |
| 189 virtual unsigned int ReleaseModule() = 0; | 190 virtual unsigned int ReleaseModule() = 0; |
| 190 | 191 |
| 191 virtual bool IsShuttingDown() = 0; | 192 virtual bool IsShuttingDown() = 0; |
| 192 | 193 |
| 193 virtual printing::PrintJobManager* print_job_manager() = 0; | 194 virtual printing::PrintJobManager* print_job_manager() = 0; |
| 194 virtual printing::PrintPreviewDialogController* | 195 virtual printing::PrintPreviewDialogController* |
| 195 print_preview_dialog_controller() = 0; | 196 print_preview_dialog_controller() = 0; |
| 196 virtual printing::BackgroundPrintingManager* | 197 virtual printing::BackgroundPrintingManager* |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 267 virtual shell_integration::DefaultWebClientState | 268 virtual shell_integration::DefaultWebClientState |
| 268 CachedDefaultWebClientState() = 0; | 269 CachedDefaultWebClientState() = 0; |
| 269 | 270 |
| 270 private: | 271 private: |
| 271 DISALLOW_COPY_AND_ASSIGN(BrowserProcess); | 272 DISALLOW_COPY_AND_ASSIGN(BrowserProcess); |
| 272 }; | 273 }; |
| 273 | 274 |
| 274 extern BrowserProcess* g_browser_process; | 275 extern BrowserProcess* g_browser_process; |
| 275 | 276 |
| 276 #endif // CHROME_BROWSER_BROWSER_PROCESS_H_ | 277 #endif // CHROME_BROWSER_BROWSER_PROCESS_H_ |
| OLD | NEW |