summaryrefslogtreecommitdiffstats
path: root/chrome/browser/sync/test/integration/sync_auth_test.cc
diff options
context:
space:
mode:
authordcheng <dcheng@chromium.org>2014-10-21 04:13:07 -0700
committerCommit bot <commit-bot@chromium.org>2014-10-21 11:13:20 +0000
commit0cd9ff92b2dbc83fe8c3664b48041c7ced683c9c (patch)
tree34810f47ea5b7f10fd9dfb98e8f5700f462c2a0a /chrome/browser/sync/test/integration/sync_auth_test.cc
parent9a74ddccb2e98ec53906278be3705274b95e500c (diff)
downloadchromium_src-0cd9ff92b2dbc83fe8c3664b48041c7ced683c9c.zip
chromium_src-0cd9ff92b2dbc83fe8c3664b48041c7ced683c9c.tar.gz
chromium_src-0cd9ff92b2dbc83fe8c3664b48041c7ced683c9c.tar.bz2
Standardize usage of virtual/override/final in chrome/browser/sync/
This patch was automatically generated by applying clang fixit hints generated by the plugin to the source tree. BUG=417463 TBR=zea@chromium.org Review URL: https://codereview.chromium.org/666733003 Cr-Commit-Position: refs/heads/master@{#300454}
Diffstat (limited to 'chrome/browser/sync/test/integration/sync_auth_test.cc')
-rw-r--r--chrome/browser/sync/test/integration/sync_auth_test.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/sync/test/integration/sync_auth_test.cc b/chrome/browser/sync/test/integration/sync_auth_test.cc
index db1bc2e..0f958c2 100644
--- a/chrome/browser/sync/test/integration/sync_auth_test.cc
+++ b/chrome/browser/sync/test/integration/sync_auth_test.cc
@@ -50,9 +50,9 @@ const char kMalformedOAuth2Token[] = "{ \"foo\": ";
class TestForAuthError : public SingleClientStatusChangeChecker {
public:
explicit TestForAuthError(ProfileSyncService* service);
- virtual ~TestForAuthError();
- virtual bool IsExitConditionSatisfied() override;
- virtual std::string GetDebugMessage() const override;
+ ~TestForAuthError() override;
+ bool IsExitConditionSatisfied() override;
+ std::string GetDebugMessage() const override;
};
TestForAuthError::TestForAuthError(ProfileSyncService* service)