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

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

Issue 654223009: Standardize usage of virtual/override/final in chrome/browser/profiles/ (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 | « chrome/browser/profiles/profile.h ('k') | chrome/browser/profiles/profile_avatar_icon_util.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/profiles/profile_avatar_downloader.h
diff --git a/chrome/browser/profiles/profile_avatar_downloader.h b/chrome/browser/profiles/profile_avatar_downloader.h
index 7825ccc588fa8da4aabac91083f94f007caa809a..6844100e6b04fc0984a49d36489deed431c86878 100644
--- a/chrome/browser/profiles/profile_avatar_downloader.h
+++ b/chrome/browser/profiles/profile_avatar_downloader.h
@@ -14,12 +14,12 @@ class ProfileAvatarDownloader : public chrome::BitmapFetcherDelegate {
ProfileAvatarDownloader(size_t icon_index,
const base::FilePath& profile_path,
ProfileInfoCache* cache);
- virtual ~ProfileAvatarDownloader();
+ ~ProfileAvatarDownloader() override;
Elliot Glaysher 2014/10/22 17:52:58 Man its going to take some getting used to this.
void Start();
// BitmapFetcherDelegate:
- virtual void OnFetchComplete(const GURL url, const SkBitmap* bitmap) override;
+ void OnFetchComplete(const GURL url, const SkBitmap* bitmap) override;
private:
// Downloads the avatar image from a url.
« no previous file with comments | « chrome/browser/profiles/profile.h ('k') | chrome/browser/profiles/profile_avatar_icon_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698