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

Unified Diff: chrome/browser/extensions/api/font_settings/font_settings_api.h

Issue 624153002: replace OVERRIDE and FINAL with override and final in chrome/browser/extensions/ (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
Index: chrome/browser/extensions/api/font_settings/font_settings_api.h
diff --git a/chrome/browser/extensions/api/font_settings/font_settings_api.h b/chrome/browser/extensions/api/font_settings/font_settings_api.h
index f5c841627e396dc40af71fcf0c4caead58af20eb..b2dc21216133b9076307f5f0b956dd5aa4934f8d 100644
--- a/chrome/browser/extensions/api/font_settings/font_settings_api.h
+++ b/chrome/browser/extensions/api/font_settings/font_settings_api.h
@@ -105,7 +105,7 @@ class FontSettingsClearFontFunction : public ChromeSyncExtensionFunction {
virtual ~FontSettingsClearFontFunction() {}
// ExtensionFunction:
- virtual bool RunSync() OVERRIDE;
+ virtual bool RunSync() override;
};
// fontSettings.getFont API function.
@@ -117,7 +117,7 @@ class FontSettingsGetFontFunction : public ChromeSyncExtensionFunction {
virtual ~FontSettingsGetFontFunction() {}
// ExtensionFunction:
- virtual bool RunSync() OVERRIDE;
+ virtual bool RunSync() override;
};
// fontSettings.setFont API function.
@@ -129,7 +129,7 @@ class FontSettingsSetFontFunction : public ChromeSyncExtensionFunction {
virtual ~FontSettingsSetFontFunction() {}
// ExtensionFunction:
- virtual bool RunSync() OVERRIDE;
+ virtual bool RunSync() override;
};
// fontSettings.getFontList API function.
@@ -142,7 +142,7 @@ class FontSettingsGetFontListFunction : public ChromeAsyncExtensionFunction {
virtual ~FontSettingsGetFontListFunction() {}
// ExtensionFunction:
- virtual bool RunAsync() OVERRIDE;
+ virtual bool RunAsync() override;
private:
void FontListHasLoaded(scoped_ptr<base::ListValue> list);
@@ -155,7 +155,7 @@ class ClearFontPrefExtensionFunction : public ChromeSyncExtensionFunction {
virtual ~ClearFontPrefExtensionFunction() {}
// ExtensionFunction:
- virtual bool RunSync() OVERRIDE;
+ virtual bool RunSync() override;
// Implementations should return the name of the preference to clear, like
// "webkit.webprefs.default_font_size".
@@ -168,7 +168,7 @@ class GetFontPrefExtensionFunction : public ChromeSyncExtensionFunction {
virtual ~GetFontPrefExtensionFunction() {}
// ExtensionFunction:
- virtual bool RunSync() OVERRIDE;
+ virtual bool RunSync() override;
// Implementations should return the name of the preference to get, like
// "webkit.webprefs.default_font_size".
@@ -185,7 +185,7 @@ class SetFontPrefExtensionFunction : public ChromeSyncExtensionFunction {
virtual ~SetFontPrefExtensionFunction() {}
// ExtensionFunction:
- virtual bool RunSync() OVERRIDE;
+ virtual bool RunSync() override;
// Implementations should return the name of the preference to set, like
// "webkit.webprefs.default_font_size".
@@ -209,7 +209,7 @@ class FontSettingsClearDefaultFontSizeFunction
virtual ~FontSettingsClearDefaultFontSizeFunction() {}
// ClearFontPrefExtensionFunction:
- virtual const char* GetPrefName() OVERRIDE;
+ virtual const char* GetPrefName() override;
};
class FontSettingsGetDefaultFontSizeFunction
@@ -222,8 +222,8 @@ class FontSettingsGetDefaultFontSizeFunction
virtual ~FontSettingsGetDefaultFontSizeFunction() {}
// GetFontPrefExtensionFunction:
- virtual const char* GetPrefName() OVERRIDE;
- virtual const char* GetKey() OVERRIDE;
+ virtual const char* GetPrefName() override;
+ virtual const char* GetKey() override;
};
class FontSettingsSetDefaultFontSizeFunction
@@ -236,8 +236,8 @@ class FontSettingsSetDefaultFontSizeFunction
virtual ~FontSettingsSetDefaultFontSizeFunction() {}
// SetFontPrefExtensionFunction:
- virtual const char* GetPrefName() OVERRIDE;
- virtual const char* GetKey() OVERRIDE;
+ virtual const char* GetPrefName() override;
+ virtual const char* GetKey() override;
};
class FontSettingsClearDefaultFixedFontSizeFunction
@@ -250,7 +250,7 @@ class FontSettingsClearDefaultFixedFontSizeFunction
virtual ~FontSettingsClearDefaultFixedFontSizeFunction() {}
// ClearFontPrefExtensionFunction:
- virtual const char* GetPrefName() OVERRIDE;
+ virtual const char* GetPrefName() override;
};
class FontSettingsGetDefaultFixedFontSizeFunction
@@ -263,8 +263,8 @@ class FontSettingsGetDefaultFixedFontSizeFunction
virtual ~FontSettingsGetDefaultFixedFontSizeFunction() {}
// GetFontPrefExtensionFunction:
- virtual const char* GetPrefName() OVERRIDE;
- virtual const char* GetKey() OVERRIDE;
+ virtual const char* GetPrefName() override;
+ virtual const char* GetKey() override;
};
class FontSettingsSetDefaultFixedFontSizeFunction
@@ -277,8 +277,8 @@ class FontSettingsSetDefaultFixedFontSizeFunction
virtual ~FontSettingsSetDefaultFixedFontSizeFunction() {}
// SetFontPrefExtensionFunction:
- virtual const char* GetPrefName() OVERRIDE;
- virtual const char* GetKey() OVERRIDE;
+ virtual const char* GetPrefName() override;
+ virtual const char* GetKey() override;
};
class FontSettingsClearMinimumFontSizeFunction
@@ -291,7 +291,7 @@ class FontSettingsClearMinimumFontSizeFunction
virtual ~FontSettingsClearMinimumFontSizeFunction() {}
// ClearFontPrefExtensionFunction:
- virtual const char* GetPrefName() OVERRIDE;
+ virtual const char* GetPrefName() override;
};
class FontSettingsGetMinimumFontSizeFunction
@@ -304,8 +304,8 @@ class FontSettingsGetMinimumFontSizeFunction
virtual ~FontSettingsGetMinimumFontSizeFunction() {}
// GetFontPrefExtensionFunction:
- virtual const char* GetPrefName() OVERRIDE;
- virtual const char* GetKey() OVERRIDE;
+ virtual const char* GetPrefName() override;
+ virtual const char* GetKey() override;
};
class FontSettingsSetMinimumFontSizeFunction
@@ -318,8 +318,8 @@ class FontSettingsSetMinimumFontSizeFunction
virtual ~FontSettingsSetMinimumFontSizeFunction() {}
// SetFontPrefExtensionFunction:
- virtual const char* GetPrefName() OVERRIDE;
- virtual const char* GetKey() OVERRIDE;
+ virtual const char* GetPrefName() override;
+ virtual const char* GetKey() override;
};
} // namespace extensions

Powered by Google App Engine
This is Rietveld 408576698