Title: [159206] trunk/Source/WebKit2
Revision
159206
Author
[email protected]
Date
2013-11-13 09:59:33 -0800 (Wed, 13 Nov 2013)

Log Message

One more fix after r159197.

* UIProcess/efl/EwkTouchEvent.h:
* UIProcess/efl/EwkTouchPoint.h:

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (159205 => 159206)


--- trunk/Source/WebKit2/ChangeLog	2013-11-13 17:47:38 UTC (rev 159205)
+++ trunk/Source/WebKit2/ChangeLog	2013-11-13 17:59:33 UTC (rev 159206)
@@ -1,3 +1,10 @@
+2013-11-13  Csaba Osztrogonác  <[email protected]>
+
+        One more fix after r159197.
+
+        * UIProcess/efl/EwkTouchEvent.h:
+        * UIProcess/efl/EwkTouchPoint.h:
+
 2013-11-13  Brendan Long  <[email protected]>
 
         [Gtk][EFL] Fix builds by updating Object::TypeX to Object::Type::X

Modified: trunk/Source/WebKit2/UIProcess/efl/EwkTouchEvent.h (159205 => 159206)


--- trunk/Source/WebKit2/UIProcess/efl/EwkTouchEvent.h	2013-11-13 17:47:38 UTC (rev 159205)
+++ trunk/Source/WebKit2/UIProcess/efl/EwkTouchEvent.h	2013-11-13 17:59:33 UTC (rev 159206)
@@ -38,7 +38,7 @@
 
 class EwkTouchEvent : public API::Object {
 public:
-    static const API::Object::Type APIType = TypeTouchEvent;
+    static const API::Object::Type APIType = API::Object::Type::TouchEvent;
 
     static PassRefPtr<EwkTouchEvent> create(WKEventType type, WKArrayRef touchPoints, WKEventModifiers modifiers, double timestamp)
     {

Modified: trunk/Source/WebKit2/UIProcess/efl/EwkTouchPoint.h (159205 => 159206)


--- trunk/Source/WebKit2/UIProcess/efl/EwkTouchPoint.h	2013-11-13 17:47:38 UTC (rev 159205)
+++ trunk/Source/WebKit2/UIProcess/efl/EwkTouchPoint.h	2013-11-13 17:59:33 UTC (rev 159206)
@@ -38,7 +38,7 @@
 
 class EwkTouchPoint : public API::Object {
 public:
-    static const API::Object::Type APIType = TypeTouchPoint;
+    static const API::Object::Type APIType = API::Object::Type::TouchPoint;
 
     static PassRefPtr<EwkTouchPoint> create(uint32_t id, WKTouchPointState state, const WKPoint& screenPosition, const WKPoint& position, const WKSize& radius, float rotationAngle = 0, float forceFactor = 1)
     {
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to