| Index: components/data_reduction_proxy/browser/data_reduction_proxy_auth_request_handler_unittest.cc
|
| diff --git a/components/data_reduction_proxy/browser/data_reduction_proxy_auth_request_handler_unittest.cc b/components/data_reduction_proxy/browser/data_reduction_proxy_auth_request_handler_unittest.cc
|
| index 9ad336b1c1b4248d1e6f46a73db060366af273b2..535db8ef6c45fd5cb44956c0b89a9460fe2baa1e 100644
|
| --- a/components/data_reduction_proxy/browser/data_reduction_proxy_auth_request_handler_unittest.cc
|
| +++ b/components/data_reduction_proxy/browser/data_reduction_proxy_auth_request_handler_unittest.cc
|
| @@ -100,15 +100,15 @@ class TestDataReductionProxyAuthRequestHandler
|
| : DataReductionProxyAuthRequestHandler(
|
| client, version, params, loop_proxy) {}
|
|
|
| - virtual std::string GetDefaultKey() const OVERRIDE {
|
| + virtual std::string GetDefaultKey() const override {
|
| return kTestKey;
|
| }
|
|
|
| - virtual base::Time Now() const OVERRIDE {
|
| + virtual base::Time Now() const override {
|
| return base::Time::UnixEpoch() + now_offset_;
|
| }
|
|
|
| - virtual void RandBytes(void* output, size_t length) OVERRIDE {
|
| + virtual void RandBytes(void* output, size_t length) override {
|
| char* c = static_cast<char*>(output);
|
| for (size_t i = 0; i < length; ++i) {
|
| c[i] = 'a';
|
|
|