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

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

Issue 655063002: Use uint16 for port numbers more pervasively. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Revert bad change Created 6 years, 1 month 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
« 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 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 NotificationUIManager* notification_ui_manager() override; 91 NotificationUIManager* notification_ui_manager() override;
92 message_center::MessageCenter* message_center() override; 92 message_center::MessageCenter* message_center() override;
93 policy::BrowserPolicyConnector* browser_policy_connector() override; 93 policy::BrowserPolicyConnector* browser_policy_connector() override;
94 policy::PolicyService* policy_service() override; 94 policy::PolicyService* policy_service() override;
95 IconManager* icon_manager() override; 95 IconManager* icon_manager() override;
96 GLStringManager* gl_string_manager() override; 96 GLStringManager* gl_string_manager() override;
97 GpuModeManager* gpu_mode_manager() override; 97 GpuModeManager* gpu_mode_manager() override;
98 void CreateDevToolsHttpProtocolHandler( 98 void CreateDevToolsHttpProtocolHandler(
99 chrome::HostDesktopType host_desktop_type, 99 chrome::HostDesktopType host_desktop_type,
100 const std::string& ip, 100 const std::string& ip,
101 int port) override; 101 uint16 port) override;
102 unsigned int AddRefModule() override; 102 unsigned int AddRefModule() override;
103 unsigned int ReleaseModule() override; 103 unsigned int ReleaseModule() override;
104 bool IsShuttingDown() override; 104 bool IsShuttingDown() override;
105 printing::PrintJobManager* print_job_manager() override; 105 printing::PrintJobManager* print_job_manager() override;
106 printing::PrintPreviewDialogController* print_preview_dialog_controller() 106 printing::PrintPreviewDialogController* print_preview_dialog_controller()
107 override; 107 override;
108 printing::BackgroundPrintingManager* background_printing_manager() override; 108 printing::BackgroundPrintingManager* background_printing_manager() override;
109 IntranetRedirectDetector* intranet_redirect_detector() override; 109 IntranetRedirectDetector* intranet_redirect_detector() override;
110 const std::string& GetApplicationLocale() override; 110 const std::string& GetApplicationLocale() override;
111 void SetApplicationLocale(const std::string& locale) override; 111 void SetApplicationLocale(const std::string& locale) override;
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after
301 scoped_ptr<gcm::GCMDriver> gcm_driver_; 301 scoped_ptr<gcm::GCMDriver> gcm_driver_;
302 302
303 #if !defined(OS_ANDROID) 303 #if !defined(OS_ANDROID)
304 scoped_ptr<ChromeDeviceClient> device_client_; 304 scoped_ptr<ChromeDeviceClient> device_client_;
305 #endif 305 #endif
306 306
307 DISALLOW_COPY_AND_ASSIGN(BrowserProcessImpl); 307 DISALLOW_COPY_AND_ASSIGN(BrowserProcessImpl);
308 }; 308 };
309 309
310 #endif // CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_ 310 #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