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

Unified Diff: chrome/browser/supervised_user/custodian_profile_downloader_service.h

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/supervised_user/custodian_profile_downloader_service.h
diff --git a/chrome/browser/supervised_user/custodian_profile_downloader_service.h b/chrome/browser/supervised_user/custodian_profile_downloader_service.h
index 0c998d104c55d2da2b0b7761fd9516210505d894..bd6c186f9c7f244ac5ad89cfdcdf6d937669527e 100644
--- a/chrome/browser/supervised_user/custodian_profile_downloader_service.h
+++ b/chrome/browser/supervised_user/custodian_profile_downloader_service.h
@@ -21,7 +21,7 @@ class CustodianProfileDownloaderService : public KeyedService,
virtual ~CustodianProfileDownloaderService();
// KeyedService:
- virtual void Shutdown() OVERRIDE;
+ virtual void Shutdown() override;
// Downloads the GAIA account information for the |custodian_profile_|.
// This is a best-effort attempt with no error reporting nor timeout.
@@ -31,14 +31,14 @@ class CustodianProfileDownloaderService : public KeyedService,
void DownloadProfile(const DownloadProfileCallback& callback);
// ProfileDownloaderDelegate:
- virtual bool NeedsProfilePicture() const OVERRIDE;
- virtual int GetDesiredImageSideLength() const OVERRIDE;
- virtual std::string GetCachedPictureURL() const OVERRIDE;
- virtual Profile* GetBrowserProfile() OVERRIDE;
- virtual void OnProfileDownloadSuccess(ProfileDownloader* downloader) OVERRIDE;
+ virtual bool NeedsProfilePicture() const override;
+ virtual int GetDesiredImageSideLength() const override;
+ virtual std::string GetCachedPictureURL() const override;
+ virtual Profile* GetBrowserProfile() override;
+ virtual void OnProfileDownloadSuccess(ProfileDownloader* downloader) override;
virtual void OnProfileDownloadFailure(
ProfileDownloader* downloader,
- ProfileDownloaderDelegate::FailureReason reason) OVERRIDE;
+ ProfileDownloaderDelegate::FailureReason reason) override;
private:
friend class CustodianProfileDownloaderServiceFactory;

Powered by Google App Engine
This is Rietveld 408576698