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

Unified Diff: components/autofill/core/common/save_password_progress_logger_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/autofill/core/common/save_password_progress_logger_unittest.cc
diff --git a/components/autofill/core/common/save_password_progress_logger_unittest.cc b/components/autofill/core/common/save_password_progress_logger_unittest.cc
index 0de91ac06225003fe6420c685ece2a4a6c4b0295..55da159c2e1ca3b5b7fc30062f2414e5fe6cf0da 100644
--- a/components/autofill/core/common/save_password_progress_logger_unittest.cc
+++ b/components/autofill/core/common/save_password_progress_logger_unittest.cc
@@ -32,7 +32,7 @@ class TestLogger : public SavePasswordProgressLogger {
std::string accumulated_log() { return accumulated_log_; }
private:
- virtual void SendLog(const std::string& log) OVERRIDE {
+ virtual void SendLog(const std::string& log) override {
accumulated_log_.append(log);
}

Powered by Google App Engine
This is Rietveld 408576698