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

Unified Diff: chrome/browser/sync/test/integration/sync_integration_test_util.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/sync_integration_test_util.cc
diff --git a/chrome/browser/sync/test/integration/sync_integration_test_util.cc b/chrome/browser/sync/test/integration/sync_integration_test_util.cc
index 8418df569176e1e92257d0b7e0da36c8eefcac1e..4c4e8d335ff084cde8e0c1e311349c8b05599ef2 100644
--- a/chrome/browser/sync/test/integration/sync_integration_test_util.cc
+++ b/chrome/browser/sync/test/integration/sync_integration_test_util.cc
@@ -15,11 +15,11 @@ class PassphraseRequiredChecker : public SingleClientStatusChangeChecker {
explicit PassphraseRequiredChecker(ProfileSyncService* service)
: SingleClientStatusChangeChecker(service) {}
- virtual bool IsExitConditionSatisfied() OVERRIDE {
+ virtual bool IsExitConditionSatisfied() override {
return service()->IsPassphraseRequired();
}
- virtual std::string GetDebugMessage() const OVERRIDE {
+ virtual std::string GetDebugMessage() const override {
return "Passhrase Required";
}
};
@@ -29,12 +29,12 @@ class PassphraseAcceptedChecker : public SingleClientStatusChangeChecker {
explicit PassphraseAcceptedChecker(ProfileSyncService* service)
: SingleClientStatusChangeChecker(service) {}
- virtual bool IsExitConditionSatisfied() OVERRIDE {
+ virtual bool IsExitConditionSatisfied() override {
return !service()->IsPassphraseRequired() &&
service()->IsUsingSecondaryPassphrase();
}
- virtual std::string GetDebugMessage() const OVERRIDE {
+ virtual std::string GetDebugMessage() const override {
return "Passhrase Accepted";
}
};
« no previous file with comments | « chrome/browser/sync/test/integration/sync_extension_installer.h ('k') | chrome/browser/sync/test/integration/sync_test.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698