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

Unified Diff: chrome/browser/extensions/extension_webstore_private_api.h

Issue 8473003: Add OVERRIDE to chrome/browser/extensions/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/extensions/extension_webstore_private_api.h
diff --git a/chrome/browser/extensions/extension_webstore_private_api.h b/chrome/browser/extensions/extension_webstore_private_api.h
index 4dd9b8213165e2ca8a8a6a2b4291a7fe95592ead..bb4c476d3d451941766559f96cf3d98ec53ac4c0 100644
--- a/chrome/browser/extensions/extension_webstore_private_api.h
+++ b/chrome/browser/extensions/extension_webstore_private_api.h
@@ -84,7 +84,7 @@ class BeginInstallWithManifestFunction
protected:
virtual ~BeginInstallWithManifestFunction();
- virtual bool RunImpl();
+ virtual bool RunImpl() OVERRIDE;
// Sets the result_ as a string based on |code|.
void SetResult(ResultCode code);
@@ -109,7 +109,7 @@ class BeginInstallWithManifestFunction
};
class CompleteInstallFunction : public SyncExtensionFunction {
- virtual bool RunImpl();
+ virtual bool RunImpl() OVERRIDE;
DECLARE_EXTENSION_FUNCTION_NAME("webstorePrivate.completeInstall");
};
@@ -145,17 +145,17 @@ class SilentlyInstallFunction : public AsyncExtensionFunction,
};
class GetBrowserLoginFunction : public SyncExtensionFunction {
- virtual bool RunImpl();
+ virtual bool RunImpl() OVERRIDE;
DECLARE_EXTENSION_FUNCTION_NAME("webstorePrivate.getBrowserLogin");
};
class GetStoreLoginFunction : public SyncExtensionFunction {
- virtual bool RunImpl();
+ virtual bool RunImpl() OVERRIDE;
DECLARE_EXTENSION_FUNCTION_NAME("webstorePrivate.getStoreLogin");
};
class SetStoreLoginFunction : public SyncExtensionFunction {
- virtual bool RunImpl();
+ virtual bool RunImpl() OVERRIDE;
DECLARE_EXTENSION_FUNCTION_NAME("webstorePrivate.setStoreLogin");
};
« no previous file with comments | « chrome/browser/extensions/extension_webrequest_api.h ('k') | chrome/browser/extensions/extensions_quota_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698