| Index: chrome/browser/font_family_cache.h
|
| diff --git a/chrome/browser/font_family_cache.h b/chrome/browser/font_family_cache.h
|
| index e05f51531f9ae707cd9abaf60cb7e9839075733f..d5ff69986e5310644aa6c0ce2b9ed7f933d2d82d 100644
|
| --- a/chrome/browser/font_family_cache.h
|
| +++ b/chrome/browser/font_family_cache.h
|
| @@ -27,7 +27,7 @@ class FontFamilyCache : public base::SupportsUserData::Data,
|
| public content::NotificationObserver {
|
| public:
|
| explicit FontFamilyCache(Profile* profile);
|
| - virtual ~FontFamilyCache();
|
| + ~FontFamilyCache() override;
|
|
|
| // Gets or creates the relevant FontFamilyCache, and then fills |map|.
|
| static void FillFontFamilyMap(Profile* profile,
|
| @@ -72,9 +72,9 @@ class FontFamilyCache : public base::SupportsUserData::Data,
|
|
|
| // content::NotificationObserver override.
|
| // Called when the profile is being destructed.
|
| - virtual void Observe(int type,
|
| - const content::NotificationSource& source,
|
| - const content::NotificationDetails& details) override;
|
| + void Observe(int type,
|
| + const content::NotificationSource& source,
|
| + const content::NotificationDetails& details) override;
|
|
|
| // Cache of font family preferences.
|
| FontFamilyMap font_family_map_;
|
|
|