| 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 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 146 | 146 |
| 147 virtual GLStringManager* gl_string_manager() = 0; | 147 virtual GLStringManager* gl_string_manager() = 0; |
| 148 | 148 |
| 149 virtual GpuModeManager* gpu_mode_manager() = 0; | 149 virtual GpuModeManager* gpu_mode_manager() = 0; |
| 150 | 150 |
| 151 virtual AutomationProviderList* GetAutomationProviderList() = 0; | 151 virtual AutomationProviderList* GetAutomationProviderList() = 0; |
| 152 | 152 |
| 153 virtual void CreateDevToolsHttpProtocolHandler( | 153 virtual void CreateDevToolsHttpProtocolHandler( |
| 154 chrome::HostDesktopType host_desktop_type, | 154 chrome::HostDesktopType host_desktop_type, |
| 155 const std::string& ip, | 155 const std::string& ip, |
| 156 int port, | 156 int port) = 0; |
| 157 const std::string& frontend_url) = 0; | |
| 158 | 157 |
| 159 virtual unsigned int AddRefModule() = 0; | 158 virtual unsigned int AddRefModule() = 0; |
| 160 virtual unsigned int ReleaseModule() = 0; | 159 virtual unsigned int ReleaseModule() = 0; |
| 161 | 160 |
| 162 virtual bool IsShuttingDown() = 0; | 161 virtual bool IsShuttingDown() = 0; |
| 163 | 162 |
| 164 virtual printing::PrintJobManager* print_job_manager() = 0; | 163 virtual printing::PrintJobManager* print_job_manager() = 0; |
| 165 virtual printing::PrintPreviewDialogController* | 164 virtual printing::PrintPreviewDialogController* |
| 166 print_preview_dialog_controller() = 0; | 165 print_preview_dialog_controller() = 0; |
| 167 virtual printing::BackgroundPrintingManager* | 166 virtual printing::BackgroundPrintingManager* |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 226 virtual WebRtcLogUploader* webrtc_log_uploader() = 0; | 225 virtual WebRtcLogUploader* webrtc_log_uploader() = 0; |
| 227 #endif | 226 #endif |
| 228 | 227 |
| 229 private: | 228 private: |
| 230 DISALLOW_COPY_AND_ASSIGN(BrowserProcess); | 229 DISALLOW_COPY_AND_ASSIGN(BrowserProcess); |
| 231 }; | 230 }; |
| 232 | 231 |
| 233 extern BrowserProcess* g_browser_process; | 232 extern BrowserProcess* g_browser_process; |
| 234 | 233 |
| 235 #endif // CHROME_BROWSER_BROWSER_PROCESS_H_ | 234 #endif // CHROME_BROWSER_BROWSER_PROCESS_H_ |
| OLD | NEW |