Title: [168414] trunk/Source/WebKit2
Revision
168414
Author
o...@webkit.org
Date
2014-05-07 01:15:54 -0700 (Wed, 07 May 2014)

Log Message

URTBF after r168393 to fix !IOS builds.

* Shared/WebEvent.h:

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (168413 => 168414)


--- trunk/Source/WebKit2/ChangeLog	2014-05-07 07:56:07 UTC (rev 168413)
+++ trunk/Source/WebKit2/ChangeLog	2014-05-07 08:15:54 UTC (rev 168414)
@@ -1,3 +1,9 @@
+2014-05-07  Csaba Osztrogonác  <o...@webkit.org>
+
+        URTBF after r168393 to fix !IOS builds.
+
+        * Shared/WebEvent.h:
+
 2014-05-06  Brady Eidson  <beid...@apple.com>
 
         Followup to "Add WK2 SPI to prevent the previous back/forward item from remaining in the list"

Modified: trunk/Source/WebKit2/Shared/WebEvent.h (168413 => 168414)


--- trunk/Source/WebKit2/Shared/WebEvent.h	2014-05-07 07:56:07 UTC (rev 168413)
+++ trunk/Source/WebKit2/Shared/WebEvent.h	2014-05-07 08:15:54 UTC (rev 168414)
@@ -362,8 +362,6 @@
 
     void setState(TouchPointState state) { m_state = state; }
 
-    bool allTouchPointsAreReleased() const;
-
     void encode(IPC::ArgumentEncoder&) const;
     static bool decode(IPC::ArgumentDecoder&, WebPlatformTouchPoint&);
 
@@ -387,6 +385,8 @@
 
     const Vector<WebPlatformTouchPoint>& touchPoints() const { return m_touchPoints; }
 
+    bool allTouchPointsAreReleased() const;
+
     void encode(IPC::ArgumentEncoder&) const;
     static bool decode(IPC::ArgumentDecoder&, WebTouchEvent&);
   
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to