| Index: chrome/browser/spellchecker/spellcheck_service.h | 
| diff --git a/chrome/browser/spellchecker/spellcheck_service.h b/chrome/browser/spellchecker/spellcheck_service.h | 
| index a0b22f8bb40844896c7df633aa1ac82ff8fb950e..84db1ce6a96de45d3b7c4bf3941af42344a22b56 100644 | 
| --- a/chrome/browser/spellchecker/spellcheck_service.h | 
| +++ b/chrome/browser/spellchecker/spellcheck_service.h | 
| @@ -53,7 +53,7 @@ class SpellcheckService : public KeyedService, | 
| }; | 
|  | 
| explicit SpellcheckService(content::BrowserContext* context); | 
| -  virtual ~SpellcheckService(); | 
| +  ~SpellcheckService() override; | 
|  | 
| // This function computes a vector of strings which are to be displayed in | 
| // the context menu over a text area for changing spell check languages. It | 
| @@ -109,20 +109,20 @@ class SpellcheckService : public KeyedService, | 
| bool UnloadExternalDictionary(std::string path); | 
|  | 
| // NotificationProfile implementation. | 
| -  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; | 
|  | 
| // SpellcheckCustomDictionary::Observer implementation. | 
| -  virtual void OnCustomDictionaryLoaded() override; | 
| -  virtual void OnCustomDictionaryChanged( | 
| +  void OnCustomDictionaryLoaded() override; | 
| +  void OnCustomDictionaryChanged( | 
| const SpellcheckCustomDictionary::Change& dictionary_change) override; | 
|  | 
| // SpellcheckHunspellDictionary::Observer implementation. | 
| -  virtual void OnHunspellDictionaryInitialized() override; | 
| -  virtual void OnHunspellDictionaryDownloadBegin() override; | 
| -  virtual void OnHunspellDictionaryDownloadSuccess() override; | 
| -  virtual void OnHunspellDictionaryDownloadFailure() override; | 
| +  void OnHunspellDictionaryInitialized() override; | 
| +  void OnHunspellDictionaryDownloadBegin() override; | 
| +  void OnHunspellDictionaryDownloadSuccess() override; | 
| +  void OnHunspellDictionaryDownloadFailure() override; | 
|  | 
| private: | 
| FRIEND_TEST_ALL_PREFIXES(SpellcheckServiceBrowserTest, DeleteCorruptedBDICT); | 
|  |