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

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

Issue 12086018: GTTF: Add missing virtual destructors. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixes Created 7 years, 11 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 2d053e4c27a6c8eecb15aca418bdbe772312fcd4..ea6b6e7df7bd2b9cc65b1961e6dd553e2090810a 100644
--- a/chrome/browser/spellchecker/spellcheck_hunspell_dictionary.h
+++ b/chrome/browser/spellchecker/spellcheck_hunspell_dictionary.h
@@ -42,6 +42,9 @@ class SpellcheckHunspellDictionary
// Dictionary download failed.
virtual void OnHunspellDictionaryDownloadFailure() = 0;
+
+ protected:
+ virtual ~Observer() { }
};
// TODO(rlp): Passing in the host is very temporary. In the next CL this

Powered by Google App Engine
This is Rietveld 408576698