From 0617145a89917ae7735fe1c9538688ab9a577df5 Mon Sep 17 00:00:00 2001 From: Kristian Monsen Date: Fri, 30 Jul 2010 10:46:49 +0100 Subject: Merge WebKit at r64264 : Initial merge by git. Change-Id: Ic42bef02efef8217a0f84c47176a9c617c28d1f1 --- WebKit/chromium/src/WebViewImpl.h | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'WebKit/chromium/src/WebViewImpl.h') diff --git a/WebKit/chromium/src/WebViewImpl.h b/WebKit/chromium/src/WebViewImpl.h index 312f20f..530fbf5 100644 --- a/WebKit/chromium/src/WebViewImpl.h +++ b/WebKit/chromium/src/WebViewImpl.h @@ -47,6 +47,7 @@ #include "InspectorClientImpl.h" #include "LayerRendererChromium.h" #include "NotificationPresenterImpl.h" +#include "SpeechInputClientImpl.h" #include #include @@ -170,11 +171,13 @@ public: const WebNode&, const WebVector& names, const WebVector& labels, + const WebVector& uniqueIDs, int separatorIndex); virtual void applyAutoFillSuggestions( const WebNode&, const WebVector& names, const WebVector& labels, + const WebVector& icons, const WebVector& uniqueIDs, int separatorIndex); // DEPRECATED: replacing with applyAutoFillSuggestions. @@ -239,7 +242,7 @@ public: void mouseUp(const WebMouseEvent&); void mouseContextMenu(const WebMouseEvent&); void mouseDoubleClick(const WebMouseEvent&); - void mouseWheel(const WebMouseWheelEvent&); + bool mouseWheel(const WebMouseWheelEvent&); bool keyEvent(const WebKeyboardEvent&); bool charEvent(const WebKeyboardEvent&); bool touchEvent(const WebTouchEvent&); @@ -511,6 +514,10 @@ private: #endif static const WebInputEvent* m_currentInputEvent; +#if ENABLE(INPUT_SPEECH) + SpeechInputClientImpl m_speechInputClient; +#endif + OwnPtr m_gles2Context; }; -- cgit v1.1