Title: [151582] trunk/Source/WebCore
Revision
151582
Author
[email protected]
Date
2013-06-14 00:55:59 -0700 (Fri, 14 Jun 2013)

Log Message

[EFL] Fix build when DRAG_SUPPORT is set OFF
https://bugs.webkit.org/show_bug.cgi?id=117628

Patch by Michał Pakuła vel Rutka <[email protected]> on 2013-06-14
Reviewed by Gyuyoung Kim.

Add guard around Clipboard::declareAndWriteDragImage.

* platform/efl/ClipboardEfl.cpp:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (151581 => 151582)


--- trunk/Source/WebCore/ChangeLog	2013-06-14 04:58:11 UTC (rev 151581)
+++ trunk/Source/WebCore/ChangeLog	2013-06-14 07:55:59 UTC (rev 151582)
@@ -1,3 +1,14 @@
+2013-06-14  Michał Pakuła vel Rutka  <[email protected]>
+
+        [EFL] Fix build when DRAG_SUPPORT is set OFF
+        https://bugs.webkit.org/show_bug.cgi?id=117628
+
+        Reviewed by Gyuyoung Kim.
+
+        Add guard around Clipboard::declareAndWriteDragImage.
+
+        * platform/efl/ClipboardEfl.cpp:
+
 2013-06-13  Simon Fraser  <[email protected]>
 
         Sometimes we stick in slow scrolling mode even after leaving a page

Modified: trunk/Source/WebCore/platform/efl/ClipboardEfl.cpp (151581 => 151582)


--- trunk/Source/WebCore/platform/efl/ClipboardEfl.cpp	2013-06-14 04:58:11 UTC (rev 151581)
+++ trunk/Source/WebCore/platform/efl/ClipboardEfl.cpp	2013-06-14 07:55:59 UTC (rev 151582)
@@ -33,10 +33,12 @@
     return 0;
 }
 
+#if ENABLE(DRAG_SUPPORT)
 void Clipboard::declareAndWriteDragImage(Element*, const KURL&, const String&, Frame*)
 {
     notImplemented();
 }
+#endif
 
 #if ENABLE(DATA_TRANSFER_ITEMS)
 PassRefPtr<DataTransferItemList> Clipboard::items()
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to