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

Unified Diff: chrome/browser/spellchecker_linux.cc

Issue 395007: Move Mac to using renderer spellchecker. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: ui test fix Created 11 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
« no previous file with comments | « chrome/browser/spellchecker_common.h ('k') | chrome/browser/spellchecker_mac.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/spellchecker_linux.cc
===================================================================
--- chrome/browser/spellchecker_linux.cc (revision 32394)
+++ chrome/browser/spellchecker_linux.cc (working copy)
@@ -5,14 +5,13 @@
// If linux ever gains a platform specific spellchecker, it will be
// implemented here.
-#include "base/string16.h"
-#include "chrome/browser/spellchecker_common.h"
+#include "spellchecker_platform_engine.h"
namespace SpellCheckerPlatform {
bool SpellCheckerAvailable() {
// As of Summer 2009, there is no commonly accepted platform spellchecker
- // for linux, so we'll return false here.
+ // for Linux, so we'll return false here.
return false;
}
@@ -54,7 +53,7 @@
int GetDocumentTag() { return 0; }
-void IgnoreWord(const std::string& word) {}
+void IgnoreWord(const string16& word) {}
void CloseDocumentWithTag(int tag) {}
« no previous file with comments | « chrome/browser/spellchecker_common.h ('k') | chrome/browser/spellchecker_mac.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698