From 0cd9ff92b2dbc83fe8c3664b48041c7ced683c9c Mon Sep 17 00:00:00 2001 From: dcheng Date: Tue, 21 Oct 2014 04:13:07 -0700 Subject: 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} --- chrome/browser/sync/test/integration/sync_auth_test.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'chrome/browser/sync/test/integration/sync_auth_test.cc') 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) -- cgit v1.1