Index: net/url_request/url_request_throttler_unittest.cc |
diff --git a/net/url_request/url_request_throttler_unittest.cc b/net/url_request/url_request_throttler_unittest.cc |
index 5a309b928c099946365406164497dc931a1543e1..1cda5a69c08b008c71893293dbcc2b1d2e20a660 100644 |
--- a/net/url_request/url_request_throttler_unittest.cc |
+++ b/net/url_request/url_request_throttler_unittest.cc |
@@ -172,7 +172,7 @@ class URLRequestThrottlerEntryTest : public testing::Test { |
: request_(context_.CreateRequest(GURL(), DEFAULT_PRIORITY, NULL, NULL)) { |
} |
- virtual void SetUp(); |
+ void SetUp() override; |
TimeTicks now_; |
MockURLRequestThrottlerManager manager_; // Dummy object, not used. |
@@ -355,9 +355,7 @@ class URLRequestThrottlerManagerTest : public testing::Test { |
: request_(context_.CreateRequest(GURL(), DEFAULT_PRIORITY, NULL, NULL)) { |
} |
- virtual void SetUp() { |
- request_->SetLoadFlags(0); |
- } |
+ void SetUp() override { request_->SetLoadFlags(0); } |
void ExpectEntryAllowsAllOnErrorIfOptedOut( |
URLRequestThrottlerEntryInterface* entry, |