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

Unified Diff: components/metrics/gpu/gpu_metrics_provider_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/gpu/gpu_metrics_provider.h ('k') | components/metrics/metrics_log_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/metrics/gpu/gpu_metrics_provider_unittest.cc
diff --git a/components/metrics/gpu/gpu_metrics_provider_unittest.cc b/components/metrics/gpu/gpu_metrics_provider_unittest.cc
index 1aea17aad7ab15b51572b2a4c0ba5ef35d576ee2..c7eb31bf2f86641441ce4af53dd4459f82a1a1d7 100644
--- a/components/metrics/gpu/gpu_metrics_provider_unittest.cc
+++ b/components/metrics/gpu/gpu_metrics_provider_unittest.cc
@@ -24,15 +24,15 @@ class TestGPUMetricsProvider : public GPUMetricsProvider {
virtual ~TestGPUMetricsProvider() {}
private:
- virtual gfx::Size GetScreenSize() const OVERRIDE {
+ virtual gfx::Size GetScreenSize() const override {
return gfx::Size(kScreenWidth, kScreenHeight);
}
- virtual float GetScreenDeviceScaleFactor() const OVERRIDE {
+ virtual float GetScreenDeviceScaleFactor() const override {
return kScreenScaleFactor;
}
- virtual int GetScreenCount() const OVERRIDE {
+ virtual int GetScreenCount() const override {
return kScreenCount;
}
« no previous file with comments | « components/metrics/gpu/gpu_metrics_provider.h ('k') | components/metrics/metrics_log_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698