Title: [132353] trunk/Source/WebKit2
Revision
132353
Author
[email protected]
Date
2012-10-24 07:41:19 -0700 (Wed, 24 Oct 2012)

Log Message

[EFL][AC] Fix build break when AC is enabled
https://bugs.webkit.org/show_bug.cgi?id=100245

Patch by Sudarsana Nagineni <[email protected]> on 2012-10-24
Reviewed by Kenneth Rohde Christiansen.

Fix build break after r132337.

* UIProcess/API/efl/EwkViewImpl.h:
* UIProcess/API/efl/ewk_view.cpp:

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (132352 => 132353)


--- trunk/Source/WebKit2/ChangeLog	2012-10-24 14:38:11 UTC (rev 132352)
+++ trunk/Source/WebKit2/ChangeLog	2012-10-24 14:41:19 UTC (rev 132353)
@@ -1,3 +1,15 @@
+2012-10-24  Sudarsana Nagineni  <[email protected]>
+
+        [EFL][AC] Fix build break when AC is enabled
+        https://bugs.webkit.org/show_bug.cgi?id=100245
+
+        Reviewed by Kenneth Rohde Christiansen.
+
+        Fix build break after r132337.
+
+        * UIProcess/API/efl/EwkViewImpl.h:
+        * UIProcess/API/efl/ewk_view.cpp:
+
 2012-10-24  Thiago Marcos P. Santos  <[email protected]>
 
         [EFL] run-webkit-tests writes garbage on stderr when running on Xvfb

Modified: trunk/Source/WebKit2/UIProcess/API/efl/EwkViewImpl.h (132352 => 132353)


--- trunk/Source/WebKit2/UIProcess/API/efl/EwkViewImpl.h	2012-10-24 14:38:11 UTC (rev 132352)
+++ trunk/Source/WebKit2/UIProcess/API/efl/EwkViewImpl.h	2012-10-24 14:41:19 UTC (rev 132353)
@@ -30,6 +30,10 @@
 #include <wtf/OwnPtr.h>
 #include <wtf/RefPtr.h>
 
+#if USE(ACCELERATED_COMPOSITING)
+#include <Evas_GL.h>
+#endif
+
 #define EWK_VIEW_PRIV_GET(smartData, priv)                                     \
     EwkViewImpl* priv = smartData->priv
 

Modified: trunk/Source/WebKit2/UIProcess/API/efl/ewk_view.cpp (132352 => 132353)


--- trunk/Source/WebKit2/UIProcess/API/efl/ewk_view.cpp	2012-10-24 14:38:11 UTC (rev 132352)
+++ trunk/Source/WebKit2/UIProcess/API/efl/ewk_view.cpp	2012-10-24 14:41:19 UTC (rev 132353)
@@ -75,10 +75,6 @@
 #include "WebInspectorProxy.h"
 #endif
 
-#if USE(ACCELERATED_COMPOSITING)
-#include <Evas_GL.h>
-#endif
-
 #if USE(TILED_BACKING_STORE)
 #include "PageViewportController.h"
 #include "PageViewportControllerClientEfl.h"
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to