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

Unified Diff: chrome/browser/chromeos/extensions/echo_private_api.h

Issue 623293003: replace OVERRIDE and FINAL with override and final in chrome/browser/chromeos/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: run git cl format on echo_dialog_view.h 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/chromeos/extensions/echo_private_api.h
diff --git a/chrome/browser/chromeos/extensions/echo_private_api.h b/chrome/browser/chromeos/extensions/echo_private_api.h
index 20ea9ca5d312d9bf096edec10c1398716effa540..c1208117932730d3a7147fdfd3601933e07d351b 100644
--- a/chrome/browser/chromeos/extensions/echo_private_api.h
+++ b/chrome/browser/chromeos/extensions/echo_private_api.h
@@ -31,7 +31,7 @@ class EchoPrivateGetRegistrationCodeFunction
protected:
virtual ~EchoPrivateGetRegistrationCodeFunction();
- virtual bool RunSync() OVERRIDE;
+ virtual bool RunSync() override;
private:
void GetRegistrationCode(const std::string& type);
@@ -46,7 +46,7 @@ class EchoPrivateGetOobeTimestampFunction
protected:
virtual ~EchoPrivateGetOobeTimestampFunction();
- virtual bool RunAsync() OVERRIDE;
+ virtual bool RunAsync() override;
private:
bool GetOobeTimestampOnFileThread();
@@ -60,7 +60,7 @@ class EchoPrivateSetOfferInfoFunction : public ChromeSyncExtensionFunction {
protected:
virtual ~EchoPrivateSetOfferInfoFunction();
- virtual bool RunSync() OVERRIDE;
+ virtual bool RunSync() override;
private:
DECLARE_EXTENSION_FUNCTION("echoPrivate.setOfferInfo",
@@ -73,7 +73,7 @@ class EchoPrivateGetOfferInfoFunction : public ChromeSyncExtensionFunction {
protected:
virtual ~EchoPrivateGetOfferInfoFunction();
- virtual bool RunSync() OVERRIDE;
+ virtual bool RunSync() override;
private:
DECLARE_EXTENSION_FUNCTION("echoPrivate.getOfferInfo",
@@ -102,13 +102,13 @@ class EchoPrivateGetUserConsentFunction : public ChromeAsyncExtensionFunction,
protected:
virtual ~EchoPrivateGetUserConsentFunction();
- virtual bool RunAsync() OVERRIDE;
+ virtual bool RunAsync() override;
private:
// chromeos::EchoDialogListener overrides.
- virtual void OnAccept() OVERRIDE;
- virtual void OnCancel() OVERRIDE;
- virtual void OnMoreInfoLinkClicked() OVERRIDE;
+ virtual void OnAccept() override;
+ virtual void OnCancel() override;
+ virtual void OnMoreInfoLinkClicked() override;
// Checks whether "allow redeem ChromeOS registration offers" setting is
// disabled in cros settings. It may be asynchronous if the needed settings

Powered by Google App Engine
This is Rietveld 408576698