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

Unified Diff: chrome/browser/ui/webui/local_discovery/local_discovery_ui_handler.h

Issue 629463003: replace OVERRIDE and FINAL with override and final in chrome/browser/ui/[w-z]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/webui/local_discovery/local_discovery_ui_handler.h
diff --git a/chrome/browser/ui/webui/local_discovery/local_discovery_ui_handler.h b/chrome/browser/ui/webui/local_discovery/local_discovery_ui_handler.h
index 5b162d5890e6ae66e7d5c4d028c26d7152f01931..eae720906872d9afc72ba8bbc5ec83225e14c11f 100644
--- a/chrome/browser/ui/webui/local_discovery/local_discovery_ui_handler.h
+++ b/chrome/browser/ui/webui/local_discovery/local_discovery_ui_handler.h
@@ -53,52 +53,52 @@ class LocalDiscoveryUIHandler : public content::WebUIMessageHandler,
static bool GetHasVisible();
// WebUIMessageHandler implementation.
- virtual void RegisterMessages() OVERRIDE;
+ virtual void RegisterMessages() override;
// PrivetRegisterOperation::Delegate implementation.
virtual void OnPrivetRegisterClaimToken(
PrivetRegisterOperation* operation,
const std::string& token,
- const GURL& url) OVERRIDE;
+ const GURL& url) override;
virtual void OnPrivetRegisterError(
PrivetRegisterOperation* operation,
const std::string& action,
PrivetRegisterOperation::FailureReason reason,
int printer_http_code,
- const base::DictionaryValue* json) OVERRIDE;
+ const base::DictionaryValue* json) override;
virtual void OnPrivetRegisterDone(
PrivetRegisterOperation* operation,
- const std::string& device_id) OVERRIDE;
+ const std::string& device_id) override;
// PrivetV3SetupFlow::Delegate implementation.
- virtual scoped_ptr<GCDApiFlow> CreateApiFlow() OVERRIDE;
- virtual void GetWiFiCredentials(const CredentialsCallback& callback) OVERRIDE;
- virtual void SwitchToSetupWiFi(const ResultCallback& callback) OVERRIDE;
+ virtual scoped_ptr<GCDApiFlow> CreateApiFlow() override;
+ virtual void GetWiFiCredentials(const CredentialsCallback& callback) override;
+ virtual void SwitchToSetupWiFi(const ResultCallback& callback) override;
virtual void CreatePrivetV3Client(
const std::string& service_name,
- const PrivetClientCallback& callback) OVERRIDE;
+ const PrivetClientCallback& callback) override;
virtual void ConfirmSecurityCode(const std::string& confirmation_code,
- const ResultCallback& callback) OVERRIDE;
- virtual void RestoreWifi(const ResultCallback& callback) OVERRIDE;
- virtual void OnSetupDone() OVERRIDE;
- virtual void OnSetupError() OVERRIDE;
+ const ResultCallback& callback) override;
+ virtual void RestoreWifi(const ResultCallback& callback) override;
+ virtual void OnSetupDone() override;
+ virtual void OnSetupError() override;
// PrivetDeviceLister::Delegate implementation.
virtual void DeviceChanged(bool added,
const std::string& name,
- const DeviceDescription& description) OVERRIDE;
- virtual void DeviceRemoved(const std::string& name) OVERRIDE;
- virtual void DeviceCacheFlushed() OVERRIDE;
+ const DeviceDescription& description) override;
+ virtual void DeviceRemoved(const std::string& name) override;
+ virtual void DeviceCacheFlushed() override;
// CloudDeviceListDelegate implementation.
- virtual void OnDeviceListReady(const std::vector<Device>& devices) OVERRIDE;
- virtual void OnDeviceListUnavailable() OVERRIDE;
+ virtual void OnDeviceListReady(const std::vector<Device>& devices) override;
+ virtual void OnDeviceListUnavailable() override;
// SigninManagerBase::Observer implementation.
virtual void GoogleSigninSucceeded(const std::string& account_id,
const std::string& username,
- const std::string& password) OVERRIDE;
+ const std::string& password) override;
virtual void GoogleSignedOut(const std::string& account_id,
- const std::string& username) OVERRIDE;
+ const std::string& username) override;
private:
typedef std::map<std::string, DeviceDescription> DeviceDescriptionMap;

Powered by Google App Engine
This is Rietveld 408576698