diff options
| author | Simon Hausmann <simon.hausmann@digia.com> | 2012-11-07 11:22:47 +0100 |
|---|---|---|
| committer | Simon Hausmann <simon.hausmann@digia.com> | 2012-11-07 11:22:47 +0100 |
| commit | cfd86b747d32ac22246a1aa908eaa720c63a88c1 (patch) | |
| tree | 24d68c6f61c464ecba1e05670b80390ea3b0e50c /Source/WebKit2/Shared/WebEvent.h | |
| parent | 69d7c744c9de19d152dbe2d8e46eb7dfd4511d1a (diff) | |
| download | qtwebkit-cfd86b747d32ac22246a1aa908eaa720c63a88c1.tar.gz | |
Imported WebKit commit 20271caf2e2c016d5cef40184cddeefeac4f1876 (http://svn.webkit.org/repository/webkit/trunk@133733)
New snapshot that contains all previous fixes as well as build fix for latest QtMultimedia API changes.
Diffstat (limited to 'Source/WebKit2/Shared/WebEvent.h')
| -rw-r--r-- | Source/WebKit2/Shared/WebEvent.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/Source/WebKit2/Shared/WebEvent.h b/Source/WebKit2/Shared/WebEvent.h index 8111d5160..9681dc160 100644 --- a/Source/WebKit2/Shared/WebEvent.h +++ b/Source/WebKit2/Shared/WebEvent.h @@ -103,7 +103,7 @@ protected: WebEvent(Type, Modifiers, double timestamp); - void encode(CoreIPC::ArgumentEncoder*) const; + void encode(CoreIPC::ArgumentEncoder&) const; static bool decode(CoreIPC::ArgumentDecoder*, WebEvent&); private: @@ -140,7 +140,7 @@ public: bool didActivateWebView() const { return m_didActivateWebView; } #endif - void encode(CoreIPC::ArgumentEncoder*) const; + void encode(CoreIPC::ArgumentEncoder&) const; static bool decode(CoreIPC::ArgumentDecoder*, WebMouseEvent&); private: @@ -199,7 +199,7 @@ public: const WebCore::FloatSize& unacceleratedScrollingDelta() const { return m_unacceleratedScrollingDelta; } #endif - void encode(CoreIPC::ArgumentEncoder*) const; + void encode(CoreIPC::ArgumentEncoder&) const; static bool decode(CoreIPC::ArgumentDecoder*, WebWheelEvent&); private: @@ -237,7 +237,7 @@ public: bool isKeypad() const { return m_isKeypad; } bool isSystemKey() const { return m_isSystemKey; } - void encode(CoreIPC::ArgumentEncoder*) const; + void encode(CoreIPC::ArgumentEncoder&) const; static bool decode(CoreIPC::ArgumentDecoder*, WebKeyboardEvent&); static bool isKeyboardEventType(Type); @@ -268,7 +268,7 @@ public: const WebCore::IntSize area() const { return m_area; } const WebCore::FloatPoint delta() const { return m_delta; } - void encode(CoreIPC::ArgumentEncoder*) const; + void encode(CoreIPC::ArgumentEncoder&) const; static bool decode(CoreIPC::ArgumentDecoder*, WebGestureEvent&); private: @@ -313,7 +313,7 @@ public: void setState(TouchPointState state) { m_state = state; } - void encode(CoreIPC::ArgumentEncoder*) const; + void encode(CoreIPC::ArgumentEncoder&) const; static bool decode(CoreIPC::ArgumentDecoder*, WebPlatformTouchPoint&); private: @@ -336,7 +336,7 @@ public: const Vector<WebPlatformTouchPoint>& touchPoints() const { return m_touchPoints; } - void encode(CoreIPC::ArgumentEncoder*) const; + void encode(CoreIPC::ArgumentEncoder&) const; static bool decode(CoreIPC::ArgumentDecoder*, WebTouchEvent&); private: |
