diff options
author | estade@chromium.org <estade@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-19 22:44:29 +0000 |
---|---|---|
committer | estade@chromium.org <estade@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-19 22:44:29 +0000 |
commit | c27324bdb7b9ee448a0c73d5c005c709282c8cbc (patch) | |
tree | d7ec31ab43e6493ef3f00eb81faeca0c79a793c3 /chrome/browser/spellchecker_linux.cc | |
parent | 5ef3748a651d073bf12928e880a042bf450e1aa8 (diff) | |
download | chromium_src-c27324bdb7b9ee448a0c73d5c005c709282c8cbc.zip chromium_src-c27324bdb7b9ee448a0c73d5c005c709282c8cbc.tar.gz chromium_src-c27324bdb7b9ee448a0c73d5c005c709282c8cbc.tar.bz2 |
Move Mac to using renderer spellchecker.
BUG=25677
Review URL: http://codereview.chromium.org/395007
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@32561 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/spellchecker_linux.cc')
-rw-r--r-- | chrome/browser/spellchecker_linux.cc | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/chrome/browser/spellchecker_linux.cc b/chrome/browser/spellchecker_linux.cc index 9f0f144..8637edc 100644 --- a/chrome/browser/spellchecker_linux.cc +++ b/chrome/browser/spellchecker_linux.cc @@ -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 @@ void RemoveWord(const string16& word) {} int GetDocumentTag() { return 0; } -void IgnoreWord(const std::string& word) {} +void IgnoreWord(const string16& word) {} void CloseDocumentWithTag(int tag) {} |