diff options
Diffstat (limited to 'Source/WebKit/chromium/src/WebViewImpl.cpp')
-rw-r--r-- | Source/WebKit/chromium/src/WebViewImpl.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/WebKit/chromium/src/WebViewImpl.cpp b/Source/WebKit/chromium/src/WebViewImpl.cpp index 0d5f25a51..6a253f8e3 100644 --- a/Source/WebKit/chromium/src/WebViewImpl.cpp +++ b/Source/WebKit/chromium/src/WebViewImpl.cpp @@ -1108,10 +1108,10 @@ void WebViewImpl::numberOfWheelEventHandlersChanged(unsigned numberOfWheelHandle m_client->numberOfWheelEventHandlersChanged(numberOfWheelHandlers); } -void WebViewImpl::numberOfTouchEventHandlersChanged(unsigned numberOfTouchHandlers) +void WebViewImpl::hasTouchEventHandlers(bool hasTouchHandlers) { if (m_client) - m_client->numberOfTouchEventHandlersChanged(numberOfTouchHandlers); + m_client->hasTouchEventHandlers(hasTouchHandlers); } #if !OS(DARWIN) @@ -2100,11 +2100,11 @@ WebTextInputType WebViewImpl::textInputType() if (textarea->readOnly() || textarea->disabled()) return WebTextInputTypeNone; - return WebTextInputTypeText; + return WebTextInputTypeTextArea; } if (node->shouldUseInputMethod()) - return WebTextInputTypeText; + return WebTextInputTypeContentEditable; return WebTextInputTypeNone; } |