Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(249)

Unified Diff: components/data_reduction_proxy/browser/data_reduction_proxy_auth_request_handler_unittest.cc

Issue 623133002: replace OVERRIDE and FINAL with override and final in components/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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';

Powered by Google App Engine
This is Rietveld 408576698