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

Unified Diff: chrome/browser/sync/test/integration/preferences_helper.cc

Issue 629603002: replace OVERRIDE and FINAL with override and final in chrome/browser/[r-z]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on master 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: chrome/browser/sync/test/integration/preferences_helper.cc
diff --git a/chrome/browser/sync/test/integration/preferences_helper.cc b/chrome/browser/sync/test/integration/preferences_helper.cc
index 3188b0f9b7bffa1db2468b4c650abeaa0e7d246a..e1afc6b2ac299c91022ea198be54e8352b4cc7a2 100644
--- a/chrome/browser/sync/test/integration/preferences_helper.cc
+++ b/chrome/browser/sync/test/integration/preferences_helper.cc
@@ -220,7 +220,7 @@ class PrefMatchChecker : public StatusChangeChecker {
// StatusChangeChecker implementation.
virtual bool IsExitConditionSatisfied() = 0;
- virtual std::string GetDebugMessage() const OVERRIDE;
+ virtual std::string GetDebugMessage() const override;
// Wait for condition to become true.
void Wait();
@@ -281,7 +281,7 @@ class ListPrefMatchChecker : public PrefMatchChecker {
virtual ~ListPrefMatchChecker();
// Implementation of PrefMatchChecker.
- virtual bool IsExitConditionSatisfied() OVERRIDE;
+ virtual bool IsExitConditionSatisfied() override;
};
ListPrefMatchChecker::ListPrefMatchChecker(const char* path)
@@ -302,7 +302,7 @@ class BooleanPrefMatchChecker : public PrefMatchChecker {
virtual ~BooleanPrefMatchChecker();
// Implementation of PrefMatchChecker.
- virtual bool IsExitConditionSatisfied() OVERRIDE;
+ virtual bool IsExitConditionSatisfied() override;
};
BooleanPrefMatchChecker::BooleanPrefMatchChecker(const char* path)
@@ -323,7 +323,7 @@ class IntegerPrefMatchChecker : public PrefMatchChecker {
virtual ~IntegerPrefMatchChecker();
// Implementation of PrefMatchChecker.
- virtual bool IsExitConditionSatisfied() OVERRIDE;
+ virtual bool IsExitConditionSatisfied() override;
};
IntegerPrefMatchChecker::IntegerPrefMatchChecker(const char* path)
@@ -344,7 +344,7 @@ class StringPrefMatchChecker : public PrefMatchChecker {
virtual ~StringPrefMatchChecker();
// Implementation of PrefMatchChecker.
- virtual bool IsExitConditionSatisfied() OVERRIDE;
+ virtual bool IsExitConditionSatisfied() override;
};
StringPrefMatchChecker::StringPrefMatchChecker(const char* path)

Powered by Google App Engine
This is Rietveld 408576698