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

Unified Diff: extensions/browser/api/test/test_api.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/api/system_storage/system_storage_api.h ('k') | extensions/browser/api/usb/usb_api.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/browser/api/test/test_api.h
diff --git a/extensions/browser/api/test/test_api.h b/extensions/browser/api/test/test_api.h
index e2de0b087bf31e3e21e60c3a7515c74f98161e3a..dd465b0438daa015739be25d436aea307e49394c 100644
--- a/extensions/browser/api/test/test_api.h
+++ b/extensions/browser/api/test/test_api.h
@@ -20,7 +20,7 @@ class TestExtensionFunction : public SyncExtensionFunction {
virtual ~TestExtensionFunction();
// SyncExtensionFunction:
- virtual bool RunSync() OVERRIDE;
+ virtual bool RunSync() override;
virtual bool RunSafe() = 0;
};
@@ -33,7 +33,7 @@ class TestNotifyPassFunction : public TestExtensionFunction {
virtual ~TestNotifyPassFunction();
// TestExtensionFunction:
- virtual bool RunSafe() OVERRIDE;
+ virtual bool RunSafe() override;
};
class TestNotifyFailFunction : public TestExtensionFunction {
@@ -44,7 +44,7 @@ class TestNotifyFailFunction : public TestExtensionFunction {
virtual ~TestNotifyFailFunction();
// TestExtensionFunction:
- virtual bool RunSafe() OVERRIDE;
+ virtual bool RunSafe() override;
};
class TestLogFunction : public TestExtensionFunction {
@@ -55,7 +55,7 @@ class TestLogFunction : public TestExtensionFunction {
virtual ~TestLogFunction();
// TestExtensionFunction:
- virtual bool RunSafe() OVERRIDE;
+ virtual bool RunSafe() override;
};
class TestSendMessageFunction : public AsyncExtensionFunction {
@@ -73,7 +73,7 @@ class TestSendMessageFunction : public AsyncExtensionFunction {
virtual ~TestSendMessageFunction();
// ExtensionFunction:
- virtual bool RunAsync() OVERRIDE;
+ virtual bool RunAsync() override;
};
class TestGetConfigFunction : public TestExtensionFunction {
@@ -111,7 +111,7 @@ class TestGetConfigFunction : public TestExtensionFunction {
virtual ~TestGetConfigFunction();
// TestExtensionFunction:
- virtual bool RunSafe() OVERRIDE;
+ virtual bool RunSafe() override;
};
class TestWaitForRoundTripFunction : public TestExtensionFunction {
@@ -122,7 +122,7 @@ class TestWaitForRoundTripFunction : public TestExtensionFunction {
virtual ~TestWaitForRoundTripFunction();
// TestExtensionFunction:
- virtual bool RunSafe() OVERRIDE;
+ virtual bool RunSafe() override;
};
} // namespace extensions
« no previous file with comments | « extensions/browser/api/system_storage/system_storage_api.h ('k') | extensions/browser/api/usb/usb_api.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698