| Index: components/data_reduction_proxy/core/browser/data_reduction_proxy_auth_request_handler_unittest.cc
|
| diff --git a/components/data_reduction_proxy/core/browser/data_reduction_proxy_auth_request_handler_unittest.cc b/components/data_reduction_proxy/core/browser/data_reduction_proxy_auth_request_handler_unittest.cc
|
| index bf7d888003de4fbf57b101cf01b5e3b3bcf08193..4d4d0935323996ebe875656977eed182de06d555 100644
|
| --- a/components/data_reduction_proxy/core/browser/data_reduction_proxy_auth_request_handler_unittest.cc
|
| +++ b/components/data_reduction_proxy/core/browser/data_reduction_proxy_auth_request_handler_unittest.cc
|
| @@ -100,15 +100,13 @@ class TestDataReductionProxyAuthRequestHandler
|
| : DataReductionProxyAuthRequestHandler(
|
| client, version, params, loop_proxy) {}
|
|
|
| - virtual std::string GetDefaultKey() const override {
|
| - return kTestKey;
|
| - }
|
| + std::string GetDefaultKey() const override { return kTestKey; }
|
|
|
| - virtual base::Time Now() const override {
|
| + base::Time Now() const override {
|
| return base::Time::UnixEpoch() + now_offset_;
|
| }
|
|
|
| - virtual void RandBytes(void* output, size_t length) override {
|
| + 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';
|
|
|