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

Unified Diff: extensions/browser/extensions_test.h

Issue 685503002: Standardize usage of virtual/override/final specifiers. (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: extensions/browser/extensions_test.h
diff --git a/extensions/browser/extensions_test.h b/extensions/browser/extensions_test.h
index 17cfa01fae14f62bdc860d71251b1ab503b17e82..29a122cdc6775d661a3667d9374b734bf6db2967 100644
--- a/extensions/browser/extensions_test.h
+++ b/extensions/browser/extensions_test.h
@@ -30,7 +30,7 @@ class TestExtensionsBrowserClient;
class ExtensionsTest : public testing::Test {
public:
ExtensionsTest();
- virtual ~ExtensionsTest();
+ ~ExtensionsTest() override;
// Returned as a BrowserContext since most users don't need methods from
// TestBrowserContext.
@@ -43,8 +43,8 @@ class ExtensionsTest : public testing::Test {
}
// testing::Test overrides:
- virtual void SetUp() override;
- virtual void TearDown() override;
+ void SetUp() override;
+ void TearDown() override;
private:
scoped_ptr<content::ContentClient> content_client_;
« no previous file with comments | « extensions/browser/extension_icon_image_unittest.cc ('k') | extensions/browser/guest_view/guest_view_manager_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698