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

Unified Diff: chrome/common/extensions/manifest_handlers/ui_overrides_handler.h

Issue 644903002: Replacing the OVERRIDE with override and in chrome (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Extrafile added 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/common/extensions/manifest_handlers/ui_overrides_handler.h
diff --git a/chrome/common/extensions/manifest_handlers/ui_overrides_handler.h b/chrome/common/extensions/manifest_handlers/ui_overrides_handler.h
index d47e720b2bc91964b7f23ee651b32b064f06493e..b1ce8647f00a8c78cbc84ad4b2003d0df44d3789 100644
--- a/chrome/common/extensions/manifest_handlers/ui_overrides_handler.h
+++ b/chrome/common/extensions/manifest_handlers/ui_overrides_handler.h
@@ -39,19 +39,19 @@ class UIOverridesHandler : public ManifestHandler {
UIOverridesHandler();
virtual ~UIOverridesHandler();
- virtual bool Parse(Extension* extension, base::string16* error) OVERRIDE;
+ virtual bool Parse(Extension* extension, base::string16* error) override;
virtual bool Validate(const Extension* extension,
std::string* error,
- std::vector<InstallWarning>* warnings) const OVERRIDE;
+ std::vector<InstallWarning>* warnings) const override;
- virtual ManifestPermission* CreatePermission() OVERRIDE;
+ virtual ManifestPermission* CreatePermission() override;
virtual ManifestPermission* CreateInitialRequiredPermission(
- const Extension* extension) OVERRIDE;
+ const Extension* extension) override;
private:
class ManifestPermissionImpl;
- virtual const std::vector<std::string> Keys() const OVERRIDE;
+ virtual const std::vector<std::string> Keys() const override;
DISALLOW_COPY_AND_ASSIGN(UIOverridesHandler);
};

Powered by Google App Engine
This is Rietveld 408576698