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

Unified Diff: sync/internal_api/attachments/attachment_downloader_impl_unittest.cc

Issue 629733002: replace OVERRIDE and FINAL with override and final in sync/ (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
« no previous file with comments | « sync/engine/syncer_unittest.cc ('k') | sync/internal_api/attachments/attachment_service_impl_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sync/internal_api/attachments/attachment_downloader_impl_unittest.cc
diff --git a/sync/internal_api/attachments/attachment_downloader_impl_unittest.cc b/sync/internal_api/attachments/attachment_downloader_impl_unittest.cc
index ee57a5bb1b512865e135e0237039a85beafb3eac..551ab9a725146ed397396a00e41dc6287aa7bc2c 100644
--- a/sync/internal_api/attachments/attachment_downloader_impl_unittest.cc
+++ b/sync/internal_api/attachments/attachment_downloader_impl_unittest.cc
@@ -44,12 +44,12 @@ class MockOAuth2TokenService : public FakeOAuth2TokenService {
net::URLRequestContextGetter* getter,
const std::string& client_id,
const std::string& client_secret,
- const ScopeSet& scopes) OVERRIDE;
+ const ScopeSet& scopes) override;
virtual void InvalidateOAuth2Token(const std::string& account_id,
const std::string& client_id,
const ScopeSet& scopes,
- const std::string& access_token) OVERRIDE;
+ const std::string& access_token) override;
private:
base::WeakPtr<RequestImpl> last_request_;
@@ -102,8 +102,8 @@ class TokenServiceProvider
// OAuth2TokenService::TokenServiceProvider implementation.
virtual scoped_refptr<base::SingleThreadTaskRunner>
- GetTokenServiceTaskRunner() OVERRIDE;
- virtual OAuth2TokenService* GetTokenService() OVERRIDE;
+ GetTokenServiceTaskRunner() override;
+ virtual OAuth2TokenService* GetTokenService() override;
private:
virtual ~TokenServiceProvider();
@@ -140,8 +140,8 @@ class AttachmentDownloaderImplTest : public testing::Test {
AttachmentDownloaderImplTest() : num_completed_downloads_(0) {}
- virtual void SetUp() OVERRIDE;
- virtual void TearDown() OVERRIDE;
+ virtual void SetUp() override;
+ virtual void TearDown() override;
AttachmentDownloader* downloader() { return attachment_downloader_.get(); }
« no previous file with comments | « sync/engine/syncer_unittest.cc ('k') | sync/internal_api/attachments/attachment_service_impl_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698