Index: chrome/browser/custom_handlers/protocol_handler_registry_unittest.cc |
diff --git a/chrome/browser/custom_handlers/protocol_handler_registry_unittest.cc b/chrome/browser/custom_handlers/protocol_handler_registry_unittest.cc |
index e28c034b8998d15762cfb93f736012e4d5a3ec91..ab54350c7d2f96637aa11fc8fb5a7d6b646f64c3 100644 |
--- a/chrome/browser/custom_handlers/protocol_handler_registry_unittest.cc |
+++ b/chrome/browser/custom_handlers/protocol_handler_registry_unittest.cc |
@@ -390,7 +390,7 @@ class ProtocolHandlerRegistryTest : public testing::Test { |
// Registry owns the delegate_ it handles deletion of that object. |
} |
- virtual void SetUp() { |
+ void SetUp() override { |
profile_.reset(new TestingProfile()); |
CHECK(profile_->GetPrefs()); |
SetUpRegistry(true); |
@@ -398,9 +398,7 @@ class ProtocolHandlerRegistryTest : public testing::Test { |
CreateProtocolHandler("test", GURL("http://test.com/%s")); |
} |
- virtual void TearDown() { |
- TeadDownRegistry(); |
- } |
+ void TearDown() override { TeadDownRegistry(); } |
TestMessageLoop loop_; |