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

Unified Diff: components/data_reduction_proxy/browser/data_reduction_proxy_config_service_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_config_service_unittest.cc
diff --git a/components/data_reduction_proxy/browser/data_reduction_proxy_config_service_unittest.cc b/components/data_reduction_proxy/browser/data_reduction_proxy_config_service_unittest.cc
index ad46684a843ae36debf93cb69526fe23d391a2b5..916f569c7b534f0637a536ab44a3c430e87377d3 100644
--- a/components/data_reduction_proxy/browser/data_reduction_proxy_config_service_unittest.cc
+++ b/components/data_reduction_proxy/browser/data_reduction_proxy_config_service_unittest.cc
@@ -48,17 +48,17 @@ class TestProxyConfigService : public net::ProxyConfigService {
}
virtual void AddObserver(
- net::ProxyConfigService::Observer* observer) OVERRIDE {
+ net::ProxyConfigService::Observer* observer) override {
observers_.AddObserver(observer);
}
virtual void RemoveObserver(
- net::ProxyConfigService::Observer* observer) OVERRIDE {
+ net::ProxyConfigService::Observer* observer) override {
observers_.RemoveObserver(observer);
}
virtual ConfigAvailability GetLatestProxyConfig(
- net::ProxyConfig* config) OVERRIDE {
+ net::ProxyConfig* config) override {
*config = config_;
return availability_;
}

Powered by Google App Engine
This is Rietveld 408576698