Title: [138463] trunk/Source/WebKit2
Revision
138463
Author
[email protected]
Date
2012-12-25 09:08:17 -0800 (Tue, 25 Dec 2012)

Log Message

[EFL][WK2] Build breaks with --no-input-type-color
https://bugs.webkit.org/show_bug.cgi?id=105740

Patch by Seokju Kwon <[email protected]> on 2012-12-25
Reviewed by Laszlo Gombos.

* UIProcess/API/efl/EwkViewImpl.h: Add INPUT_TYPE_COLOR guard.
(EwkViewImpl):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (138462 => 138463)


--- trunk/Source/WebKit2/ChangeLog	2012-12-25 12:28:33 UTC (rev 138462)
+++ trunk/Source/WebKit2/ChangeLog	2012-12-25 17:08:17 UTC (rev 138463)
@@ -1,3 +1,13 @@
+2012-12-25  Seokju Kwon  <[email protected]>
+
+        [EFL][WK2] Build breaks with --no-input-type-color
+        https://bugs.webkit.org/show_bug.cgi?id=105740
+
+        Reviewed by Laszlo Gombos.
+
+        * UIProcess/API/efl/EwkViewImpl.h: Add INPUT_TYPE_COLOR guard.
+        (EwkViewImpl):
+
 2012-12-25  Christophe Dumez  <[email protected]>
 
         [EFL][WK2] Refactor snapshot taking code

Modified: trunk/Source/WebKit2/UIProcess/API/efl/EwkViewImpl.h (138462 => 138463)


--- trunk/Source/WebKit2/UIProcess/API/efl/EwkViewImpl.h	2012-12-25 12:28:33 UTC (rev 138462)
+++ trunk/Source/WebKit2/UIProcess/API/efl/EwkViewImpl.h	2012-12-25 17:08:17 UTC (rev 138463)
@@ -285,7 +285,9 @@
     OwnPtr<EwkContextMenu> m_contextMenu;
     OwnPtr<EwkPopupMenu> m_popupMenu;
     OwnPtr<WebKit::InputMethodContextEfl> m_inputMethodContext;
+#if ENABLE(INPUT_TYPE_COLOR)
     OwnPtr<EwkColorPicker> m_colorPicker;
+#endif
     bool m_isHardwareAccelerated;
     bool m_setDrawsBackground;
 };
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to