Title: [121969] trunk/Source/WebKit2
Revision
121969
Author
commit-qu...@webkit.org
Date
2012-07-06 07:16:05 -0700 (Fri, 06 Jul 2012)

Log Message

[EFL] WebKit-EFL headers do not build with gcc < 4.6
https://bugs.webkit.org/show_bug.cgi?id=90681

Unreviewed EFL build fix.

Remove several forward declarations from ewk_view
header to avoid typedef redefinitions which are
illegal in C.

Patch by Christophe Dumez <christophe.du...@intel.com> on 2012-07-06

* UIProcess/API/efl/ewk_view.h:

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (121968 => 121969)


--- trunk/Source/WebKit2/ChangeLog	2012-07-06 14:09:12 UTC (rev 121968)
+++ trunk/Source/WebKit2/ChangeLog	2012-07-06 14:16:05 UTC (rev 121969)
@@ -1,3 +1,16 @@
+2012-07-06  Christophe Dumez  <christophe.du...@intel.com>
+
+        [EFL] WebKit-EFL headers do not build with gcc < 4.6
+        https://bugs.webkit.org/show_bug.cgi?id=90681
+
+        Unreviewed EFL build fix.
+
+        Remove several forward declarations from ewk_view
+        header to avoid typedef redefinitions which are
+        illegal in C.
+
+        * UIProcess/API/efl/ewk_view.h:
+
 2012-07-06  Csaba Osztrogonác  <o...@webkit.org>
 
         [Qt] Buildfix for newer Qt5

Modified: trunk/Source/WebKit2/UIProcess/API/efl/ewk_view.h (121968 => 121969)


--- trunk/Source/WebKit2/UIProcess/API/efl/ewk_view.h	2012-07-06 14:09:12 UTC (rev 121968)
+++ trunk/Source/WebKit2/UIProcess/API/efl/ewk_view.h	2012-07-06 14:16:05 UTC (rev 121969)
@@ -42,6 +42,9 @@
 #define ewk_view_h
 
 #include "ewk_context.h"
+#include "ewk_intent.h"
+#include "ewk_url_request.h"
+#include "ewk_web_resource.h"
 #include <Evas.h>
 
 #ifdef __cplusplus
@@ -50,11 +53,7 @@
 
 typedef struct _Ewk_View_Smart_Data Ewk_View_Smart_Data;
 typedef struct _Ewk_View_Smart_Class Ewk_View_Smart_Class;
-typedef struct _Ewk_Intent Ewk_Intent;
-typedef struct _Ewk_Url_Request Ewk_Url_Request;
-typedef struct _Ewk_Web_Resource Ewk_Web_Resource;
 
-
 /// Ewk view's class, to be overridden by sub-classes.
 struct _Ewk_View_Smart_Class {
     Evas_Smart_Class sc; /**< all but 'data' is free to be changed. */
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to