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

Unified Diff: chrome/browser/extensions/extension_function.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_function.h
diff --git a/chrome/browser/extensions/extension_function.h b/chrome/browser/extensions/extension_function.h
index 4b1fb5fb34d40fd6b76d88d5febb7f243400d0a9..ed6c631840b02f3b4d0d66858d621cd433a6633e 100644
--- a/chrome/browser/extensions/extension_function.h
+++ b/chrome/browser/extensions/extension_function.h
@@ -235,7 +235,7 @@ class UIThreadExtensionFunction : public ExtensionFunction {
virtual ~UIThreadExtensionFunction();
- virtual void SendResponse(bool success);
+ virtual void SendResponse(bool success) OVERRIDE;
// Gets the "current" browser, if any.
//
@@ -282,7 +282,7 @@ class UIThreadExtensionFunction : public ExtensionFunction {
content::NotificationRegistrar registrar_;
};
- virtual void Destruct() const;
+ virtual void Destruct() const OVERRIDE;
scoped_ptr<RenderViewHostTracker> tracker_;
};
@@ -325,9 +325,9 @@ class IOThreadExtensionFunction : public ExtensionFunction {
virtual ~IOThreadExtensionFunction();
- virtual void Destruct() const;
+ virtual void Destruct() const OVERRIDE;
- virtual void SendResponse(bool success);
+ virtual void SendResponse(bool success) OVERRIDE;
private:
base::WeakPtr<ChromeRenderMessageFilter> ipc_sender_;
« no previous file with comments | « chrome/browser/extensions/extension_devtools_browsertest.h ('k') | chrome/browser/extensions/extension_host_mac.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698