Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(37)

Side by Side Diff: chrome/browser/browser_process_impl.h

Issue 12328029: Plumb HostDesktopType through BrowserListTabContentsProvider. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/browser/browser_process.h ('k') | chrome/browser/browser_process_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « chrome/browser/browser_process.h ('k') | chrome/browser/browser_process_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698