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

Unified Diff: components/rappor/log_uploader_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/rappor/log_uploader.h ('k') | components/renderer_context_menu/render_view_context_menu_base.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/rappor/log_uploader_unittest.cc
diff --git a/components/rappor/log_uploader_unittest.cc b/components/rappor/log_uploader_unittest.cc
index ac37ed999af56f13241f0e6c615af262c4e4b7a4..a065786b806eddc65d74dd0001fd12e78d4c2b22 100644
--- a/components/rappor/log_uploader_unittest.cc
+++ b/components/rappor/log_uploader_unittest.cc
@@ -35,13 +35,13 @@ class TestLogUploader : public LogUploader {
}
protected:
- virtual bool IsUploadScheduled() const OVERRIDE {
+ virtual bool IsUploadScheduled() const override {
return last_interval_set() != base::TimeDelta();
}
// Schedules a future call to StartScheduledUpload if one isn't already
// pending.
- virtual void ScheduleNextUpload(base::TimeDelta interval) OVERRIDE {
+ virtual void ScheduleNextUpload(base::TimeDelta interval) override {
EXPECT_EQ(last_interval_set(), base::TimeDelta());
last_interval_set_ = interval;
}
« no previous file with comments | « components/rappor/log_uploader.h ('k') | components/renderer_context_menu/render_view_context_menu_base.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698