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

Unified Diff: extensions/browser/extension_function.h

Issue 622343002: replace OVERRIDE and FINAL with override and final in 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
« no previous file with comments | « extensions/browser/extension_error.h ('k') | extensions/browser/extension_function.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/browser/extension_function.h
diff --git a/extensions/browser/extension_function.h b/extensions/browser/extension_function.h
index c53071f34c9a08f909ff56f5efb6e4fa22d31a67..43cb6111a699575ec2d56fd2a8249c5a6ebb127b 100644
--- a/extensions/browser/extension_function.h
+++ b/extensions/browser/extension_function.h
@@ -406,7 +406,7 @@ class UIThreadExtensionFunction : public ExtensionFunction {
UIThreadExtensionFunction();
- virtual UIThreadExtensionFunction* AsUIThreadExtensionFunction() OVERRIDE;
+ virtual UIThreadExtensionFunction* AsUIThreadExtensionFunction() override;
void set_test_delegate(DelegateForTests* delegate) {
delegate_ = delegate;
@@ -455,7 +455,7 @@ class UIThreadExtensionFunction : public ExtensionFunction {
virtual ~UIThreadExtensionFunction();
- virtual void SendResponse(bool success) OVERRIDE;
+ virtual void SendResponse(bool success) override;
// Sets the Blob UUIDs whose ownership is being transferred to the renderer.
void SetTransferredBlobUUIDs(const std::vector<std::string>& blob_uuids);
@@ -477,7 +477,7 @@ class UIThreadExtensionFunction : public ExtensionFunction {
private:
class RenderHostTracker;
- virtual void Destruct() const OVERRIDE;
+ virtual void Destruct() const override;
// TODO(tommycli): Remove once RenderViewHost is gone.
IPC::Sender* GetIPCSender();
@@ -501,7 +501,7 @@ class IOThreadExtensionFunction : public ExtensionFunction {
public:
IOThreadExtensionFunction();
- virtual IOThreadExtensionFunction* AsIOThreadExtensionFunction() OVERRIDE;
+ virtual IOThreadExtensionFunction* AsIOThreadExtensionFunction() override;
void set_ipc_sender(
base::WeakPtr<extensions::ExtensionMessageFilter> ipc_sender,
@@ -530,9 +530,9 @@ class IOThreadExtensionFunction : public ExtensionFunction {
virtual ~IOThreadExtensionFunction();
- virtual void Destruct() const OVERRIDE;
+ virtual void Destruct() const override;
- virtual void SendResponse(bool success) OVERRIDE;
+ virtual void SendResponse(bool success) override;
private:
base::WeakPtr<extensions::ExtensionMessageFilter> ipc_sender_;
@@ -561,7 +561,7 @@ class AsyncExtensionFunction : public UIThreadExtensionFunction {
static bool ValidationFailure(AsyncExtensionFunction* function);
private:
- virtual ResponseAction Run() OVERRIDE;
+ virtual ResponseAction Run() override;
};
// A SyncExtensionFunction is an ExtensionFunction that runs synchronously
@@ -588,7 +588,7 @@ class SyncExtensionFunction : public UIThreadExtensionFunction {
static bool ValidationFailure(SyncExtensionFunction* function);
private:
- virtual ResponseAction Run() OVERRIDE;
+ virtual ResponseAction Run() override;
};
class SyncIOThreadExtensionFunction : public IOThreadExtensionFunction {
@@ -609,7 +609,7 @@ class SyncIOThreadExtensionFunction : public IOThreadExtensionFunction {
static bool ValidationFailure(SyncIOThreadExtensionFunction* function);
private:
- virtual ResponseAction Run() OVERRIDE;
+ virtual ResponseAction Run() override;
};
#endif // EXTENSIONS_BROWSER_EXTENSION_FUNCTION_H_
« no previous file with comments | « extensions/browser/extension_error.h ('k') | extensions/browser/extension_function.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698