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

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

Issue 652473004: Standardize usage of virtual/override/final in chrome/browser/supervised_user/ (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 | « no previous file | chrome/browser/supervised_user/custodian_profile_downloader_service_factory.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 bd6c186f9c7f244ac5ad89cfdcdf6d937669527e..2792769691368090ebf87a1195b21e9d9d4c79ba 100644
--- a/chrome/browser/supervised_user/custodian_profile_downloader_service.h
+++ b/chrome/browser/supervised_user/custodian_profile_downloader_service.h
@@ -18,10 +18,10 @@ class CustodianProfileDownloaderService : public KeyedService,
typedef base::Callback<void(const base::string16& /* full name */)>
DownloadProfileCallback;
- virtual ~CustodianProfileDownloaderService();
+ ~CustodianProfileDownloaderService() override;
// KeyedService:
- virtual void Shutdown() override;
+ 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,12 +31,12 @@ 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 void OnProfileDownloadFailure(
+ bool NeedsProfilePicture() const override;
+ int GetDesiredImageSideLength() const override;
+ std::string GetCachedPictureURL() const override;
+ Profile* GetBrowserProfile() override;
+ void OnProfileDownloadSuccess(ProfileDownloader* downloader) override;
+ void OnProfileDownloadFailure(
ProfileDownloader* downloader,
ProfileDownloaderDelegate::FailureReason reason) override;
« no previous file with comments | « no previous file | chrome/browser/supervised_user/custodian_profile_downloader_service_factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698