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

Unified Diff: chrome/common/extensions/api/spellcheck/spellcheck_handler.h

Issue 653773004: Standardize usage of virtual/override/final in chrome/ (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/common/extensions/api/spellcheck/spellcheck_handler.h
diff --git a/chrome/common/extensions/api/spellcheck/spellcheck_handler.h b/chrome/common/extensions/api/spellcheck/spellcheck_handler.h
index e482935214d28a5b6116141c2ecef924f8158d10..53bfe32679440f846b1815f4b4c58a12fb602ce0 100644
--- a/chrome/common/extensions/api/spellcheck/spellcheck_handler.h
+++ b/chrome/common/extensions/api/spellcheck/spellcheck_handler.h
@@ -14,7 +14,7 @@ namespace extensions {
// used in the SpellcheckAPI functions. It is stored on the extension.
struct SpellcheckDictionaryInfo : public extensions::Extension::ManifestData {
SpellcheckDictionaryInfo();
- virtual ~SpellcheckDictionaryInfo();
+ ~SpellcheckDictionaryInfo() override;
std::string language;
std::string locale;
@@ -26,12 +26,12 @@ struct SpellcheckDictionaryInfo : public extensions::Extension::ManifestData {
class SpellcheckHandler : public ManifestHandler {
public:
SpellcheckHandler();
- virtual ~SpellcheckHandler();
+ ~SpellcheckHandler() override;
- virtual bool Parse(Extension* extension, base::string16* error) override;
+ bool Parse(Extension* extension, base::string16* error) override;
private:
- virtual const std::vector<std::string> Keys() const override;
+ const std::vector<std::string> Keys() const override;
DISALLOW_COPY_AND_ASSIGN(SpellcheckHandler);
};

Powered by Google App Engine
This is Rietveld 408576698