| 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 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 virtual message_center::MessageCenter* message_center() OVERRIDE; | 89 virtual message_center::MessageCenter* message_center() OVERRIDE; |
| 90 #endif | 90 #endif |
| 91 virtual policy::BrowserPolicyConnector* browser_policy_connector() OVERRIDE; | 91 virtual policy::BrowserPolicyConnector* browser_policy_connector() OVERRIDE; |
| 92 virtual policy::PolicyService* policy_service() OVERRIDE; | 92 virtual policy::PolicyService* policy_service() OVERRIDE; |
| 93 virtual IconManager* icon_manager() OVERRIDE; | 93 virtual IconManager* icon_manager() OVERRIDE; |
| 94 virtual GLStringManager* gl_string_manager() OVERRIDE; | 94 virtual GLStringManager* gl_string_manager() OVERRIDE; |
| 95 virtual RenderWidgetSnapshotTaker* GetRenderWidgetSnapshotTaker() OVERRIDE; | 95 virtual RenderWidgetSnapshotTaker* GetRenderWidgetSnapshotTaker() OVERRIDE; |
| 96 virtual AutomationProviderList* GetAutomationProviderList() OVERRIDE; | 96 virtual AutomationProviderList* GetAutomationProviderList() OVERRIDE; |
| 97 virtual void CreateDevToolsHttpProtocolHandler( | 97 virtual void CreateDevToolsHttpProtocolHandler( |
| 98 Profile* profile, | 98 Profile* profile, |
| 99 chrome::HostDesktopType host_desktop_type, |
| 99 const std::string& ip, | 100 const std::string& ip, |
| 100 int port, | 101 int port, |
| 101 const std::string& frontend_url) OVERRIDE; | 102 const std::string& frontend_url) OVERRIDE; |
| 102 virtual unsigned int AddRefModule() OVERRIDE; | 103 virtual unsigned int AddRefModule() OVERRIDE; |
| 103 virtual unsigned int ReleaseModule() OVERRIDE; | 104 virtual unsigned int ReleaseModule() OVERRIDE; |
| 104 virtual bool IsShuttingDown() OVERRIDE; | 105 virtual bool IsShuttingDown() OVERRIDE; |
| 105 virtual printing::PrintJobManager* print_job_manager() OVERRIDE; | 106 virtual printing::PrintJobManager* print_job_manager() OVERRIDE; |
| 106 virtual printing::PrintPreviewDialogController* | 107 virtual printing::PrintPreviewDialogController* |
| 107 print_preview_dialog_controller() OVERRIDE; | 108 print_preview_dialog_controller() OVERRIDE; |
| 108 virtual printing::BackgroundPrintingManager* | 109 virtual printing::BackgroundPrintingManager* |
| (...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 305 #endif | 306 #endif |
| 306 | 307 |
| 307 // TODO(eroman): Remove this when done debugging 113031. This tracks | 308 // TODO(eroman): Remove this when done debugging 113031. This tracks |
| 308 // the callstack which released the final module reference count. | 309 // the callstack which released the final module reference count. |
| 309 base::debug::StackTrace release_last_reference_callstack_; | 310 base::debug::StackTrace release_last_reference_callstack_; |
| 310 | 311 |
| 311 DISALLOW_COPY_AND_ASSIGN(BrowserProcessImpl); | 312 DISALLOW_COPY_AND_ASSIGN(BrowserProcessImpl); |
| 312 }; | 313 }; |
| 313 | 314 |
| 314 #endif // CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_ | 315 #endif // CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_ |
| OLD | NEW |