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

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

Issue 684613002: Standardize usage of virtual/override/final specifiers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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
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 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 DownloadRequestLimiter* download_request_limiter() override; 113 DownloadRequestLimiter* download_request_limiter() override;
114 BackgroundModeManager* background_mode_manager() override; 114 BackgroundModeManager* background_mode_manager() override;
115 void set_background_mode_manager_for_test( 115 void set_background_mode_manager_for_test(
116 scoped_ptr<BackgroundModeManager> manager) override; 116 scoped_ptr<BackgroundModeManager> manager) override;
117 StatusTray* status_tray() override; 117 StatusTray* status_tray() override;
118 SafeBrowsingService* safe_browsing_service() override; 118 SafeBrowsingService* safe_browsing_service() override;
119 safe_browsing::ClientSideDetectionService* safe_browsing_detection_service() 119 safe_browsing::ClientSideDetectionService* safe_browsing_detection_service()
120 override; 120 override;
121 121
122 #if (defined(OS_WIN) || defined(OS_LINUX)) && !defined(OS_CHROMEOS) 122 #if (defined(OS_WIN) || defined(OS_LINUX)) && !defined(OS_CHROMEOS)
123 virtual void StartAutoupdateTimer() override; 123 void StartAutoupdateTimer() override;
124 #endif 124 #endif
125 125
126 ChromeNetLog* net_log() override; 126 ChromeNetLog* net_log() override;
127 prerender::PrerenderTracker* prerender_tracker() override; 127 prerender::PrerenderTracker* prerender_tracker() override;
128 component_updater::ComponentUpdateService* component_updater() override; 128 component_updater::ComponentUpdateService* component_updater() override;
129 CRLSetFetcher* crl_set_fetcher() override; 129 CRLSetFetcher* crl_set_fetcher() override;
130 component_updater::PnaclComponentInstaller* pnacl_component_installer() 130 component_updater::PnaclComponentInstaller* pnacl_component_installer()
131 override; 131 override;
132 MediaFileSystemRegistry* media_file_system_registry() override; 132 MediaFileSystemRegistry* media_file_system_registry() override;
133 bool created_local_state() const override; 133 bool created_local_state() const override;
(...skipping 167 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

Powered by Google App Engine
This is Rietveld 408576698