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

Unified Diff: chrome/browser/extensions/api/module/module.h

Issue 624153002: replace OVERRIDE and FINAL with override and final in chrome/browser/extensions/ (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/extensions/api/module/module.h
diff --git a/chrome/browser/extensions/api/module/module.h b/chrome/browser/extensions/api/module/module.h
index a6f00f4e27a4f530be133db328024c198b7cfe57..76b096a2b383d52f65ff42ce9ec97a6bae201264 100644
--- a/chrome/browser/extensions/api/module/module.h
+++ b/chrome/browser/extensions/api/module/module.h
@@ -25,7 +25,7 @@ class ExtensionSetUpdateUrlDataFunction : public ChromeSyncExtensionFunction {
virtual ~ExtensionSetUpdateUrlDataFunction() {}
// ExtensionFunction:
- virtual bool RunSync() OVERRIDE;
+ virtual bool RunSync() override;
};
class ExtensionIsAllowedIncognitoAccessFunction
@@ -38,7 +38,7 @@ class ExtensionIsAllowedIncognitoAccessFunction
virtual ~ExtensionIsAllowedIncognitoAccessFunction() {}
// ExtensionFunction:
- virtual bool RunSync() OVERRIDE;
+ virtual bool RunSync() override;
};
class ExtensionIsAllowedFileSchemeAccessFunction
@@ -51,7 +51,7 @@ class ExtensionIsAllowedFileSchemeAccessFunction
virtual ~ExtensionIsAllowedFileSchemeAccessFunction() {}
// ExtensionFunction:
- virtual bool RunSync() OVERRIDE;
+ virtual bool RunSync() override;
};
} // namespace extensions

Powered by Google App Engine
This is Rietveld 408576698