summaryrefslogtreecommitdiffstats
path: root/WebKit/android
diff options
context:
space:
mode:
authorBen Murdoch <benm@google.com>2011-05-06 12:54:10 +0100
committerBen Murdoch <benm@google.com>2011-05-10 15:38:33 +0100
commitc7daeac4737acbbac7f7cd35ac16ad015d433aae (patch)
treee30b0e590489589ed81252d2f57ec14ab79a919d /WebKit/android
parenta2f40ea74a5aafd6112542dde371e8a3916c5e5a (diff)
downloadexternal_webkit-c7daeac4737acbbac7f7cd35ac16ad015d433aae.zip
external_webkit-c7daeac4737acbbac7f7cd35ac16ad015d433aae.tar.gz
external_webkit-c7daeac4737acbbac7f7cd35ac16ad015d433aae.tar.bz2
Merge WebKit at r74534: Fix EditorClientAndroid.cpp (SpellChecker)
Add stub for new method added upstream: requestCheckingOfString(...) See http://trac.webkit.org/changeset/73886 Change-Id: I94d6940e48066c56e1032f12d683c530603bffc4
Diffstat (limited to 'WebKit/android')
-rw-r--r--WebKit/android/WebCoreSupport/EditorClientAndroid.cpp2
-rw-r--r--WebKit/android/WebCoreSupport/EditorClientAndroid.h1
2 files changed, 3 insertions, 0 deletions
diff --git a/WebKit/android/WebCoreSupport/EditorClientAndroid.cpp b/WebKit/android/WebCoreSupport/EditorClientAndroid.cpp
index 88f539e..250fdbf 100644
--- a/WebKit/android/WebCoreSupport/EditorClientAndroid.cpp
+++ b/WebKit/android/WebCoreSupport/EditorClientAndroid.cpp
@@ -265,6 +265,8 @@ void EditorClientAndroid::willSetInputMethodState()
notImplemented();
}
+void EditorClientAndroid::requestCheckingOfString(SpellChecker*, int, const String&) {}
+
#if ENABLE(WEB_AUTOFILL)
WebAutoFill* EditorClientAndroid::getAutoFill()
{
diff --git a/WebKit/android/WebCoreSupport/EditorClientAndroid.h b/WebKit/android/WebCoreSupport/EditorClientAndroid.h
index 348225b..94a6518 100644
--- a/WebKit/android/WebCoreSupport/EditorClientAndroid.h
+++ b/WebKit/android/WebCoreSupport/EditorClientAndroid.h
@@ -112,6 +112,7 @@ public:
virtual void getGuessesForWord(const String&, const String& context, WTF::Vector<String>& guesses);
virtual void willSetInputMethodState();
virtual void setInputMethodState(bool);
+ virtual void requestCheckingOfString(SpellChecker*, int, const String&);
// Android specific:
void setPage(Page* page) { m_page = page; }