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

Unified Diff: chrome/browser/spellchecker/spellcheck_hunspell_dictionary.h

Issue 648653003: Standardize usage of virtual/override/final in chrome/browser/ (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/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();
« no previous file with comments | « chrome/browser/spellchecker/spellcheck_factory.h ('k') | chrome/browser/spellchecker/spellcheck_message_filter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698