Title: [103614] trunk/Source/WebCore
Revision
103614
Author
[email protected]
Date
2011-12-23 02:05:55 -0800 (Fri, 23 Dec 2011)

Log Message

[EFL] Fix building with Glib support disabled
https://bugs.webkit.org/show_bug.cgi?id=70990

Patch by Ivan Briano <[email protected]> on 2011-12-23
Reviewed by Martin Robinson.

Add forward declaration for cairo_surface_t, missing when building
the EFL port with Glib disabled.

* platform/cairo/WidgetBackingStore.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (103613 => 103614)


--- trunk/Source/WebCore/ChangeLog	2011-12-23 09:58:58 UTC (rev 103613)
+++ trunk/Source/WebCore/ChangeLog	2011-12-23 10:05:55 UTC (rev 103614)
@@ -1,3 +1,15 @@
+2011-12-23  Ivan Briano  <[email protected]>
+
+        [EFL] Fix building with Glib support disabled
+        https://bugs.webkit.org/show_bug.cgi?id=70990
+
+        Reviewed by Martin Robinson.
+
+        Add forward declaration for cairo_surface_t, missing when building
+        the EFL port with Glib disabled.
+
+        * platform/cairo/WidgetBackingStore.h:
+
 2011-12-23  Adam Klein  <[email protected]>
 
         Minimize callsites and duplication of before/after advice for attribute mutations

Modified: trunk/Source/WebCore/platform/cairo/WidgetBackingStore.h (103613 => 103614)


--- trunk/Source/WebCore/platform/cairo/WidgetBackingStore.h	2011-12-23 09:58:58 UTC (rev 103613)
+++ trunk/Source/WebCore/platform/cairo/WidgetBackingStore.h	2011-12-23 10:05:55 UTC (rev 103614)
@@ -31,6 +31,8 @@
 #include <Evas.h>
 #endif
 
+typedef struct _cairo_surface cairo_surface_t;
+
 namespace WebCore {
 
 class WidgetBackingStorePrivate;
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to