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(); |
} |