| Index: net/url_request/url_request_throttler_test_support.h
|
| diff --git a/net/url_request/url_request_throttler_test_support.h b/net/url_request/url_request_throttler_test_support.h
|
| index 60a63b2a1538dea966607fa8e50aec93442a418d..a7103336c10159542d14334a673eac1af7c4c10f 100644
|
| --- a/net/url_request/url_request_throttler_test_support.h
|
| +++ b/net/url_request/url_request_throttler_test_support.h
|
| @@ -16,10 +16,10 @@ namespace net {
|
| class MockBackoffEntry : public BackoffEntry {
|
| public:
|
| explicit MockBackoffEntry(const BackoffEntry::Policy* const policy);
|
| - virtual ~MockBackoffEntry();
|
| + ~MockBackoffEntry() override;
|
|
|
| // BackoffEntry overrides.
|
| - virtual base::TimeTicks ImplGetTimeNow() const override;
|
| + base::TimeTicks ImplGetTimeNow() const override;
|
|
|
| void set_fake_now(const base::TimeTicks& now);
|
|
|
| @@ -42,11 +42,11 @@ class MockURLRequestThrottlerHeaderAdapter
|
| MockURLRequestThrottlerHeaderAdapter(const std::string& retry_value,
|
| const std::string& opt_out_value,
|
| int response_code);
|
| - virtual ~MockURLRequestThrottlerHeaderAdapter();
|
| + ~MockURLRequestThrottlerHeaderAdapter() override;
|
|
|
| // URLRequestThrottlerHeaderInterface overrides.
|
| - virtual std::string GetNormalizedValue(const std::string& key) const override;
|
| - virtual int GetResponseCode() const override;
|
| + std::string GetNormalizedValue(const std::string& key) const override;
|
| + int GetResponseCode() const override;
|
|
|
| private:
|
| std::string fake_retry_value_;
|
|
|