Title: [160000] trunk/Source/WebKit2
Revision
160000
Author
[email protected]
Date
2013-12-03 04:44:27 -0800 (Tue, 03 Dec 2013)

Log Message

Fix EFL build with INPUT_TYPE_COLOR disabled.
https://bugs.webkit.org/show_bug.cgi?id=125065

Patch by Peter Molnar <[email protected]> on 2013-12-03
Reviewed by Zoltan Herczeg.

* UIProcess/API/efl/ewk_color_picker.cpp:

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (159999 => 160000)


--- trunk/Source/WebKit2/ChangeLog	2013-12-03 12:42:29 UTC (rev 159999)
+++ trunk/Source/WebKit2/ChangeLog	2013-12-03 12:44:27 UTC (rev 160000)
@@ -1,3 +1,12 @@
+2013-12-03  Peter Molnar  <[email protected]>
+
+        Fix EFL build with INPUT_TYPE_COLOR disabled.
+        https://bugs.webkit.org/show_bug.cgi?id=125065
+
+        Reviewed by Zoltan Herczeg.
+
+        * UIProcess/API/efl/ewk_color_picker.cpp:
+
 2013-12-03  Dariusz Frankiewicz  <[email protected]>
 
         Add spatial navigation API in EFL port

Modified: trunk/Source/WebKit2/UIProcess/API/efl/ewk_color_picker.cpp (159999 => 160000)


--- trunk/Source/WebKit2/UIProcess/API/efl/ewk_color_picker.cpp	2013-12-03 12:42:29 UTC (rev 159999)
+++ trunk/Source/WebKit2/UIProcess/API/efl/ewk_color_picker.cpp	2013-12-03 12:44:27 UTC (rev 160000)
@@ -27,9 +27,9 @@
 #include <wtf/text/CString.h>
 #include <wtf/text/WTFString.h>
 
+#if ENABLE(INPUT_TYPE_COLOR)
 using namespace WebCore;
 
-#if ENABLE(INPUT_TYPE_COLOR)
 EwkColorPicker::EwkColorPicker(WKColorPickerResultListenerRef colorPickerListener, const Color& initialColor)
     : m_colorPickerListener(colorPickerListener)
     , m_color(initialColor)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to