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

Unified Diff: chrome/browser/extensions/api/automation/automation_apitest.cc

Issue 624153002: replace OVERRIDE and FINAL with override and final in chrome/browser/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
Index: chrome/browser/extensions/api/automation/automation_apitest.cc
diff --git a/chrome/browser/extensions/api/automation/automation_apitest.cc b/chrome/browser/extensions/api/automation/automation_apitest.cc
index 1fd3b5e6972cc4a67379bd172d3beb92cfc4c4e7..87ce614914bc193fe566c2efcfcfa41d3196ff2d 100644
--- a/chrome/browser/extensions/api/automation/automation_apitest.cc
+++ b/chrome/browser/extensions/api/automation/automation_apitest.cc
@@ -64,7 +64,7 @@ class AutomationApiTest : public ExtensionApiTest {
}
public:
- virtual void SetUpInProcessBrowserTestFixture() OVERRIDE {
+ virtual void SetUpInProcessBrowserTestFixture() override {
ExtensionApiTest::SetUpInProcessBrowserTestFixture();
}
};
@@ -322,7 +322,7 @@ class FakeAutomationInternalEnableTabFunction
public:
FakeAutomationInternalEnableTabFunction() {}
- ExtensionFunction::ResponseAction Run() OVERRIDE {
+ ExtensionFunction::ResponseAction Run() override {
using api::automation_internal::EnableTab::Params;
scoped_ptr<Params> params(Params::Create(*args_));
EXTENSION_FUNCTION_VALIDATE(params.get());
@@ -423,7 +423,7 @@ class FakeAutomationInternalPerformActionFunction
public:
FakeAutomationInternalPerformActionFunction() {}
- ExtensionFunction::ResponseAction Run() OVERRIDE {
+ ExtensionFunction::ResponseAction Run() override {
if (state.destroy_tree0) {
// Step 4.f: tell the extension to destroy the tree and re-request it.
state.SendTreeDestroyedEvent(kTab0Rid, browser_context());

Powered by Google App Engine
This is Rietveld 408576698