summaryrefslogtreecommitdiffstats
path: root/Source/WebKit/android/jni/WebViewCore.h
diff options
context:
space:
mode:
authorGeorge Mount <mount@google.com>2012-03-15 10:54:38 -0700
committerAndroid (Google) Code Review <android-gerrit@google.com>2012-03-15 10:54:38 -0700
commitaf447b49ab0ee7f92bd3bafff01dd22913861b2f (patch)
treebd29f14a91228714186ad285b0fa6c4f26853454 /Source/WebKit/android/jni/WebViewCore.h
parent640bfa989e82aad4ff79ff786f31a6962c37d8fd (diff)
parente9fba4d8c72fd8f537f6edd246115bf816ac0033 (diff)
downloadexternal_webkit-af447b49ab0ee7f92bd3bafff01dd22913861b2f.zip
external_webkit-af447b49ab0ee7f92bd3bafff01dd22913861b2f.tar.gz
external_webkit-af447b49ab0ee7f92bd3bafff01dd22913861b2f.tar.bz2
Merge "Add scrolling editable text with a finger drag."
Diffstat (limited to 'Source/WebKit/android/jni/WebViewCore.h')
-rw-r--r--Source/WebKit/android/jni/WebViewCore.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/WebKit/android/jni/WebViewCore.h b/Source/WebKit/android/jni/WebViewCore.h
index d905556..baf9995 100644
--- a/Source/WebKit/android/jni/WebViewCore.h
+++ b/Source/WebKit/android/jni/WebViewCore.h
@@ -670,6 +670,7 @@ namespace android {
void advanceAnchorNode(DOMSelection* selection, int direction, String& markup, bool ignoreFirstNode, ExceptionCode& ec);
Node* getNextAnchorNode(Node* anchorNode, bool skipFirstHack, int direction);
Node* getImplicitBoundaryNode(Node* node, unsigned offset, int direction);
+ jobject createTextFieldInitData(Node* node);
/**
* Calls into java to reset the text edit field with the
* current contents and selection.
@@ -740,6 +741,8 @@ namespace android {
friend class ListBoxReply;
struct JavaGlue;
struct JavaGlue* m_javaGlue;
+ struct TextFieldInitDataGlue;
+ struct TextFieldInitDataGlue* m_textFieldInitDataGlue;
WebCore::Frame* m_mainFrame;
WebCoreReply* m_popupReply;
int m_blurringNodePointer;