| Index: chrome/browser/spellchecker/spellcheck_hunspell_dictionary.h
|
| diff --git a/chrome/browser/spellchecker/spellcheck_hunspell_dictionary.h b/chrome/browser/spellchecker/spellcheck_hunspell_dictionary.h
|
| index bf32c6fe857a8527e3ea1e6fe368920a58fd9150..7f95df4daa92dffba0d59b7c20c61cd1bbae3b5f 100644
|
| --- a/chrome/browser/spellchecker/spellcheck_hunspell_dictionary.h
|
| +++ b/chrome/browser/spellchecker/spellcheck_hunspell_dictionary.h
|
| @@ -48,10 +48,10 @@ class SpellcheckHunspellDictionary
|
| const std::string& language,
|
| net::URLRequestContextGetter* request_context_getter,
|
| SpellcheckService* spellcheck_service);
|
| - virtual ~SpellcheckHunspellDictionary();
|
| + ~SpellcheckHunspellDictionary() override;
|
|
|
| // SpellcheckDictionary implementation:
|
| - virtual void Load() override;
|
| + void Load() override;
|
|
|
| // Retry downloading |dictionary_file_|.
|
| void RetryDownloadDictionary(
|
| @@ -104,7 +104,7 @@ class SpellcheckHunspellDictionary
|
|
|
| // net::URLFetcherDelegate implementation. Called when dictionary download
|
| // finishes.
|
| - virtual void OnURLFetchComplete(const net::URLFetcher* source) override;
|
| + void OnURLFetchComplete(const net::URLFetcher* source) override;
|
|
|
| // Determine the correct url to download the dictionary.
|
| GURL GetDictionaryURL();
|
|
|