| Index: chrome/browser/safe_browsing/safe_browsing_service_browsertest.cc
|
| diff --git a/chrome/browser/safe_browsing/safe_browsing_service_browsertest.cc b/chrome/browser/safe_browsing/safe_browsing_service_browsertest.cc
|
| index cdb03bb24200a92724bd535c034548bab22129ce..3137d061d1ff7472410d114cffde4cb220fe34b5 100644
|
| --- a/chrome/browser/safe_browsing/safe_browsing_service_browsertest.cc
|
| +++ b/chrome/browser/safe_browsing/safe_browsing_service_browsertest.cc
|
| @@ -901,7 +901,7 @@ IN_PROC_BROWSER_TEST_F(SafeBrowsingServiceTest, StartAndStop) {
|
|
|
| class SafeBrowsingServiceShutdownTest : public SafeBrowsingServiceTest {
|
| public:
|
| - virtual void TearDown() override {
|
| + void TearDown() override {
|
| // Browser should be fully torn down by now, so we can safely check these
|
| // counters.
|
| EXPECT_EQ(1, TestProtocolManager::create_count());
|
| @@ -974,7 +974,7 @@ class SafeBrowsingDatabaseManagerCookieTest : public InProcessBrowserTest {
|
| public:
|
| SafeBrowsingDatabaseManagerCookieTest() {}
|
|
|
| - virtual void SetUp() override {
|
| + void SetUp() override {
|
| // We need to start the test server to get the host&port in the url.
|
| ASSERT_TRUE(test_server()->Start());
|
|
|
| @@ -989,7 +989,7 @@ class SafeBrowsingDatabaseManagerCookieTest : public InProcessBrowserTest {
|
| InProcessBrowserTest::SetUp();
|
| }
|
|
|
| - virtual void TearDown() override {
|
| + void TearDown() override {
|
| InProcessBrowserTest::TearDown();
|
|
|
| SafeBrowsingService::RegisterFactory(NULL);
|
|
|