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

Unified Diff: components/metrics/metrics_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
« no previous file with comments | « components/metrics/metrics_service.h ('k') | components/metrics/net/net_metrics_log_uploader.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/metrics/metrics_service_unittest.cc
diff --git a/components/metrics/metrics_service_unittest.cc b/components/metrics/metrics_service_unittest.cc
index 3e4f50416a09d85f81b2474a1ec6e9813580a606..8bfbd54d3519abd8f0f625ebd85c947bce8ce443 100644
--- a/components/metrics/metrics_service_unittest.cc
+++ b/components/metrics/metrics_service_unittest.cc
@@ -38,9 +38,9 @@ class TestMetricsProvider : public metrics::MetricsProvider {
provide_stability_metrics_called_(false) {
}
- virtual bool HasStabilityMetrics() OVERRIDE { return has_stability_metrics_; }
+ virtual bool HasStabilityMetrics() override { return has_stability_metrics_; }
virtual void ProvideStabilityMetrics(
- SystemProfileProto* system_profile_proto) OVERRIDE {
+ SystemProfileProto* system_profile_proto) override {
provide_stability_metrics_called_ = true;
}
« no previous file with comments | « components/metrics/metrics_service.h ('k') | components/metrics/net/net_metrics_log_uploader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698