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

Unified Diff: components/data_reduction_proxy/core/browser/data_reduction_proxy_config_service_unittest.cc

Issue 666133002: Standardize usage of virtual/override/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/core/browser/data_reduction_proxy_config_service_unittest.cc
diff --git a/components/data_reduction_proxy/core/browser/data_reduction_proxy_config_service_unittest.cc b/components/data_reduction_proxy/core/browser/data_reduction_proxy_config_service_unittest.cc
index 801d73b200e7a540cf528cd0fc4c436b540bee35..904778cd935aa0eb0cf5c98f00a0f1ce9d4383fd 100644
--- a/components/data_reduction_proxy/core/browser/data_reduction_proxy_config_service_unittest.cc
+++ b/components/data_reduction_proxy/core/browser/data_reduction_proxy_config_service_unittest.cc
@@ -47,18 +47,15 @@ class TestProxyConfigService : public net::ProxyConfigService {
OnProxyConfigChanged(config, availability));
}
- virtual void AddObserver(
- net::ProxyConfigService::Observer* observer) override {
+ void AddObserver(net::ProxyConfigService::Observer* observer) override {
observers_.AddObserver(observer);
}
- virtual void RemoveObserver(
- net::ProxyConfigService::Observer* observer) override {
+ void RemoveObserver(net::ProxyConfigService::Observer* observer) override {
observers_.RemoveObserver(observer);
}
- virtual ConfigAvailability GetLatestProxyConfig(
- net::ProxyConfig* config) override {
+ ConfigAvailability GetLatestProxyConfig(net::ProxyConfig* config) override {
*config = config_;
return availability_;
}

Powered by Google App Engine
This is Rietveld 408576698