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

Unified Diff: chrome/browser/android/profiles/profile_downloader_android.cc

Issue 625113002: replace OVERRIDE and FINAL with override and final in chrome/browser/[a-i]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix newly added OVERRIDEs 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/android/profiles/profile_downloader_android.cc
diff --git a/chrome/browser/android/profiles/profile_downloader_android.cc b/chrome/browser/android/profiles/profile_downloader_android.cc
index 3be584c53d6aba137f3571adc1c6aeabf04e9ac4..2da15f5c9228f975b056db15231b5b431578e00c 100644
--- a/chrome/browser/android/profiles/profile_downloader_android.cc
+++ b/chrome/browser/android/profiles/profile_downloader_android.cc
@@ -46,24 +46,24 @@ class AccountInfoRetriever : public ProfileDownloaderDelegate {
}
// ProfileDownloaderDelegate implementation:
- virtual bool NeedsProfilePicture() const OVERRIDE {
+ virtual bool NeedsProfilePicture() const override {
return desired_image_side_pixels_ > 0;
}
- virtual int GetDesiredImageSideLength() const OVERRIDE {
+ virtual int GetDesiredImageSideLength() const override {
return desired_image_side_pixels_;
}
- virtual Profile* GetBrowserProfile() OVERRIDE {
+ virtual Profile* GetBrowserProfile() override {
return profile_;
}
- virtual std::string GetCachedPictureURL() const OVERRIDE {
+ virtual std::string GetCachedPictureURL() const override {
return std::string();
}
virtual void OnProfileDownloadSuccess(
- ProfileDownloader* downloader) OVERRIDE {
+ ProfileDownloader* downloader) override {
ProfileDownloaderAndroid::OnProfileDownloadSuccess(
email_,
downloader->GetProfileFullName(),
@@ -73,7 +73,7 @@ class AccountInfoRetriever : public ProfileDownloaderDelegate {
virtual void OnProfileDownloadFailure(
ProfileDownloader* downloader,
- ProfileDownloaderDelegate::FailureReason reason) OVERRIDE {
+ ProfileDownloaderDelegate::FailureReason reason) override {
LOG(ERROR) << "Failed to download the profile information: " << reason;
Shutdown();
}
« no previous file with comments | « chrome/browser/android/password_ui_view_android.h ('k') | chrome/browser/android/provider/bookmark_model_observer_task.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698