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