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

Unified Diff: chrome/browser/extensions/extension_clipboard_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_clipboard_api.h
diff --git a/chrome/browser/extensions/extension_clipboard_api.h b/chrome/browser/extensions/extension_clipboard_api.h
index e12839153d5969041b4f8aba2664fd594c4b2157..3687ca29467a9f7d0d16b4dd6ff0442eb74f2548 100644
--- a/chrome/browser/extensions/extension_clipboard_api.h
+++ b/chrome/browser/extensions/extension_clipboard_api.h
@@ -13,7 +13,7 @@
// Currently, only writing to standard buffer is possible.
class WriteDataClipboardFunction : public SyncExtensionFunction {
public:
- virtual bool RunImpl();
+ virtual bool RunImpl() OVERRIDE;
private:
// Writes plain text to the buffer. Ignores url argument if sent from the
@@ -29,7 +29,7 @@ class WriteDataClipboardFunction : public SyncExtensionFunction {
// are specified by parameters passed from the extension.
class ReadDataClipboardFunction : public SyncExtensionFunction {
public:
- virtual bool RunImpl();
+ virtual bool RunImpl() OVERRIDE;
private:
// Reads plain text from the clipboard buffer. Callback will have only data
@@ -44,7 +44,7 @@ class ReadDataClipboardFunction : public SyncExtensionFunction {
// For a given clipbord buffer, returns list of data types available on it.
class GetAvailableMimeTypesClipboardFunction : public SyncExtensionFunction {
public:
- virtual bool RunImpl();
+ virtual bool RunImpl() OVERRIDE;
private:
DECLARE_EXTENSION_FUNCTION_NAME("experimental.clipboard.getAvailableTypes")
};

Powered by Google App Engine
This is Rietveld 408576698