Title: [149283] trunk/Source/WebKit2
- Revision
- 149283
- Author
- [email protected]
- Date
- 2013-04-29 07:55:05 -0700 (Mon, 29 Apr 2013)
Log Message
[EFL][WK2]: WebProcessMain: hide call to ecore_x_shutdown() under guard
https://bugs.webkit.org/show_bug.cgi?id=115295
Patch by Sergio Correia <[email protected]> on 2013-04-29
Reviewed by Andreas Kling.
Since the mentioned function is declared in a header that is included
conditionally depending on HAVE_ECORE_X being defined.
* WebProcess/efl/WebProcessMainEfl.cpp:
(WebKit::WebProcessMainEfl):
Modified Paths
Diff
Modified: trunk/Source/WebKit2/ChangeLog (149282 => 149283)
--- trunk/Source/WebKit2/ChangeLog 2013-04-29 14:46:05 UTC (rev 149282)
+++ trunk/Source/WebKit2/ChangeLog 2013-04-29 14:55:05 UTC (rev 149283)
@@ -1,3 +1,16 @@
+2013-04-29 Sergio Correia <[email protected]>
+
+ [EFL][WK2]: WebProcessMain: hide call to ecore_x_shutdown() under guard
+ https://bugs.webkit.org/show_bug.cgi?id=115295
+
+ Reviewed by Andreas Kling.
+
+ Since the mentioned function is declared in a header that is included
+ conditionally depending on HAVE_ECORE_X being defined.
+
+ * WebProcess/efl/WebProcessMainEfl.cpp:
+ (WebKit::WebProcessMainEfl):
+
2013-04-29 Jinwoo Song <[email protected]>
[WK2] Remove build warnings by -Wunused-parameter
Modified: trunk/Source/WebKit2/WebProcess/efl/WebProcessMainEfl.cpp (149282 => 149283)
--- trunk/Source/WebKit2/WebProcess/efl/WebProcessMainEfl.cpp 2013-04-29 14:46:05 UTC (rev 149282)
+++ trunk/Source/WebKit2/WebProcess/efl/WebProcessMainEfl.cpp 2013-04-29 14:55:05 UTC (rev 149283)
@@ -139,7 +139,9 @@
edje_shutdown();
ecore_evas_shutdown();
+#ifdef HAVE_ECORE_X
ecore_x_shutdown();
+#endif
ecore_shutdown();
eina_shutdown();
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes