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

Unified Diff: chrome/renderer/spellchecker/cocoa_spelling_engine_mac.cc

Issue 11316090: [Spellcheck] Cleanup. Resubmit, again (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 1 month 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/renderer/spellchecker/cocoa_spelling_engine_mac.cc
diff --git a/chrome/renderer/spellchecker/cocoa_spelling_engine_mac.cc b/chrome/renderer/spellchecker/cocoa_spelling_engine_mac.cc
index 9c3ba9d87dcd91a5466dd836274ee06f467dde61..8030768f9721c32439909055d0ac975ecdf7c713 100644
--- a/chrome/renderer/spellchecker/cocoa_spelling_engine_mac.cc
+++ b/chrome/renderer/spellchecker/cocoa_spelling_engine_mac.cc
@@ -13,6 +13,11 @@ SpellingEngine* CreateNativeSpellingEngine() {
return new CocoaSpellingEngine();
}
+void CocoaSpellingEngine::Init(base::PlatformFile bdict_file,
+ const std::vector<std::string>&) {
+ DCHECK(bdict_file == base::kInvalidPlatformFileValue);
+}
+
bool CocoaSpellingEngine::InitializeIfNeeded() {
return false; // We never need to initialize.
}
« no previous file with comments | « chrome/renderer/spellchecker/cocoa_spelling_engine_mac.h ('k') | chrome/renderer/spellchecker/hunspell_engine.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698