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

Unified Diff: chrome/browser/profiles/gaia_info_update_service.h

Issue 624173002: replace OVERRIDE and FINAL with override and final in chrome/browser/[j-q]* (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/profiles/gaia_info_update_service.h
diff --git a/chrome/browser/profiles/gaia_info_update_service.h b/chrome/browser/profiles/gaia_info_update_service.h
index edb699aface47b9c8ad721ae94dbfc42abcdd7c7..4e5c997d2089a346eabce50af1d2cf6252f3d485 100644
--- a/chrome/browser/profiles/gaia_info_update_service.h
+++ b/chrome/browser/profiles/gaia_info_update_service.h
@@ -33,17 +33,17 @@ class GAIAInfoUpdateService : public KeyedService,
static bool ShouldUseGAIAProfileInfo(Profile* profile);
// ProfileDownloaderDelegate:
- virtual bool NeedsProfilePicture() const OVERRIDE;
- virtual int GetDesiredImageSideLength() const OVERRIDE;
- virtual Profile* GetBrowserProfile() OVERRIDE;
- virtual std::string GetCachedPictureURL() const OVERRIDE;
- virtual void OnProfileDownloadSuccess(ProfileDownloader* downloader) OVERRIDE;
+ virtual bool NeedsProfilePicture() const override;
+ virtual int GetDesiredImageSideLength() const override;
+ virtual Profile* GetBrowserProfile() override;
+ virtual std::string GetCachedPictureURL() const override;
+ virtual void OnProfileDownloadSuccess(ProfileDownloader* downloader) override;
virtual void OnProfileDownloadFailure(
ProfileDownloader* downloader,
- ProfileDownloaderDelegate::FailureReason reason) OVERRIDE;
+ ProfileDownloaderDelegate::FailureReason reason) override;
// Overridden from KeyedService:
- virtual void Shutdown() OVERRIDE;
+ virtual void Shutdown() override;
private:
FRIEND_TEST_ALL_PREFIXES(GAIAInfoUpdateServiceTest, ScheduleUpdate);
@@ -54,9 +54,9 @@ class GAIAInfoUpdateService : public KeyedService,
// Overridden from SigninManagerBase::Observer:
virtual void GoogleSigninSucceeded(const std::string& account_id,
const std::string& username,
- const std::string& password) OVERRIDE;
+ const std::string& password) override;
virtual void GoogleSignedOut(const std::string& account_id,
- const std::string& username) OVERRIDE;
+ const std::string& username) override;
Profile* profile_;
scoped_ptr<ProfileDownloader> profile_image_downloader_;

Powered by Google App Engine
This is Rietveld 408576698