| 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 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 virtual NotificationUIManager* notification_ui_manager() OVERRIDE; | 85 virtual NotificationUIManager* notification_ui_manager() OVERRIDE; |
| 86 virtual message_center::MessageCenter* message_center() OVERRIDE; | 86 virtual message_center::MessageCenter* message_center() OVERRIDE; |
| 87 virtual policy::BrowserPolicyConnector* browser_policy_connector() OVERRIDE; | 87 virtual policy::BrowserPolicyConnector* browser_policy_connector() OVERRIDE; |
| 88 virtual policy::PolicyService* policy_service() OVERRIDE; | 88 virtual policy::PolicyService* policy_service() OVERRIDE; |
| 89 virtual IconManager* icon_manager() OVERRIDE; | 89 virtual IconManager* icon_manager() OVERRIDE; |
| 90 virtual GLStringManager* gl_string_manager() OVERRIDE; | 90 virtual GLStringManager* gl_string_manager() OVERRIDE; |
| 91 virtual GpuModeManager* gpu_mode_manager() OVERRIDE; | 91 virtual GpuModeManager* gpu_mode_manager() OVERRIDE; |
| 92 virtual RenderWidgetSnapshotTaker* GetRenderWidgetSnapshotTaker() OVERRIDE; | 92 virtual RenderWidgetSnapshotTaker* GetRenderWidgetSnapshotTaker() OVERRIDE; |
| 93 virtual AutomationProviderList* GetAutomationProviderList() OVERRIDE; | 93 virtual AutomationProviderList* GetAutomationProviderList() OVERRIDE; |
| 94 virtual void CreateDevToolsHttpProtocolHandler( | 94 virtual void CreateDevToolsHttpProtocolHandler( |
| 95 Profile* profile, | |
| 96 chrome::HostDesktopType host_desktop_type, | 95 chrome::HostDesktopType host_desktop_type, |
| 97 const std::string& ip, | 96 const std::string& ip, |
| 98 int port, | 97 int port, |
| 99 const std::string& frontend_url) OVERRIDE; | 98 const std::string& frontend_url) OVERRIDE; |
| 100 virtual unsigned int AddRefModule() OVERRIDE; | 99 virtual unsigned int AddRefModule() OVERRIDE; |
| 101 virtual unsigned int ReleaseModule() OVERRIDE; | 100 virtual unsigned int ReleaseModule() OVERRIDE; |
| 102 virtual bool IsShuttingDown() OVERRIDE; | 101 virtual bool IsShuttingDown() OVERRIDE; |
| 103 virtual printing::PrintJobManager* print_job_manager() OVERRIDE; | 102 virtual printing::PrintJobManager* print_job_manager() OVERRIDE; |
| 104 virtual printing::PrintPreviewDialogController* | 103 virtual printing::PrintPreviewDialogController* |
| 105 print_preview_dialog_controller() OVERRIDE; | 104 print_preview_dialog_controller() OVERRIDE; |
| (...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 291 scoped_ptr<BrowserProcessPlatformPart> platform_part_; | 290 scoped_ptr<BrowserProcessPlatformPart> platform_part_; |
| 292 | 291 |
| 293 // TODO(eroman): Remove this when done debugging 113031. This tracks | 292 // TODO(eroman): Remove this when done debugging 113031. This tracks |
| 294 // the callstack which released the final module reference count. | 293 // the callstack which released the final module reference count. |
| 295 base::debug::StackTrace release_last_reference_callstack_; | 294 base::debug::StackTrace release_last_reference_callstack_; |
| 296 | 295 |
| 297 DISALLOW_COPY_AND_ASSIGN(BrowserProcessImpl); | 296 DISALLOW_COPY_AND_ASSIGN(BrowserProcessImpl); |
| 298 }; | 297 }; |
| 299 | 298 |
| 300 #endif // CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_ | 299 #endif // CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_ |
| OLD | NEW |