Title: [122057] trunk/Source/WebKit/efl
Revision
122057
Author
[email protected]
Date
2012-07-07 18:02:53 -0700 (Sat, 07 Jul 2012)

Log Message

[EFL] Fix build break when Accelerated Compositing is on.
https://bugs.webkit.org/show_bug.cgi?id=90718

Unreviewed build fix.

ewk_view_accelerated_compositing_XXX APIs are in ewk_view_private.h

Patch by Jinwoo Song <[email protected]> on 2012-07-07

* WebCoreSupport/PageClientEfl.cpp:
(PageClientEfl::createEvasObjectForAcceleratedCompositing):
(PageClientEfl::acceleratedCompositingContext):
* WebCoreSupport/PageClientEfl.h:
(PageClientEfl):

Modified Paths

Diff

Modified: trunk/Source/WebKit/efl/ChangeLog (122056 => 122057)


--- trunk/Source/WebKit/efl/ChangeLog	2012-07-07 22:26:33 UTC (rev 122056)
+++ trunk/Source/WebKit/efl/ChangeLog	2012-07-08 01:02:53 UTC (rev 122057)
@@ -1,3 +1,18 @@
+2012-07-07  Jinwoo Song  <[email protected]>
+
+        [EFL] Fix build break when Accelerated Compositing is on.
+        https://bugs.webkit.org/show_bug.cgi?id=90718
+
+        Unreviewed build fix.
+
+        ewk_view_accelerated_compositing_XXX APIs are in ewk_view_private.h
+
+        * WebCoreSupport/PageClientEfl.cpp:
+        (PageClientEfl::createEvasObjectForAcceleratedCompositing):
+        (PageClientEfl::acceleratedCompositingContext):
+        * WebCoreSupport/PageClientEfl.h:
+        (PageClientEfl):
+
 2012-07-06  Seokju Kwon  <[email protected]>
 
         [EFL] Add Web Inspector to WebKit-EFL

Modified: trunk/Source/WebKit/efl/WebCoreSupport/PageClientEfl.cpp (122056 => 122057)


--- trunk/Source/WebKit/efl/WebCoreSupport/PageClientEfl.cpp	2012-07-07 22:26:33 UTC (rev 122056)
+++ trunk/Source/WebKit/efl/WebCoreSupport/PageClientEfl.cpp	2012-07-08 01:02:53 UTC (rev 122057)
@@ -20,7 +20,7 @@
 #include "config.h"
 #include "PageClientEfl.h"
 
-#include "ewk_private.h"
+#include "ewk_view_private.h"
 
 namespace WebCore {
 class IntRect;
@@ -37,12 +37,12 @@
 }
 
 #if USE(ACCELERATED_COMPOSITING)
-bool PageClientEfl::createEvasObjectForAcceleratedCompositing(Evas_Native_Surface* nativeSurface, const IntRect& rect)
+bool PageClientEfl::createEvasObjectForAcceleratedCompositing(Evas_Native_Surface* nativeSurface, const WebCore::IntRect& rect)
 {
     return ewk_view_accelerated_compositing_object_create(m_view, nativeSurface, rect);
 }
 
-GraphicsContext3D* PageClientEfl::acceleratedCompositingContext()
+WebCore::GraphicsContext3D* PageClientEfl::acceleratedCompositingContext()
 {
     return ewk_view_accelerated_compositing_context_get(m_view);
 }

Modified: trunk/Source/WebKit/efl/WebCoreSupport/PageClientEfl.h (122056 => 122057)


--- trunk/Source/WebKit/efl/WebCoreSupport/PageClientEfl.h	2012-07-07 22:26:33 UTC (rev 122056)
+++ trunk/Source/WebKit/efl/WebCoreSupport/PageClientEfl.h	2012-07-08 01:02:53 UTC (rev 122057)
@@ -35,8 +35,8 @@
     virtual ~PageClientEfl();
 
 #if USE(ACCELERATED_COMPOSITING)
-    bool createEvasObjectForAcceleratedCompositing(Evas_Native_Surface*, const IntRect&);
-    GraphicsContext3D* acceleratedCompositingContext();
+    bool createEvasObjectForAcceleratedCompositing(Evas_Native_Surface*, const WebCore::IntRect&);
+    WebCore::GraphicsContext3D* acceleratedCompositingContext();
 #endif
 
     Evas_Object* view() { return m_view; }
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to