Title: [150485] trunk/Source/WebCore
Revision
150485
Author
[email protected]
Date
2013-05-21 16:01:29 -0700 (Tue, 21 May 2013)

Log Message

[EFL] Add missing #if guards on drag support methods
https://bugs.webkit.org/show_bug.cgi?id=116574

Reviewed by Christophe Dumez.

* platform/efl/PasteboardEfl.cpp:
(WebCore):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (150484 => 150485)


--- trunk/Source/WebCore/ChangeLog	2013-05-21 22:54:21 UTC (rev 150484)
+++ trunk/Source/WebCore/ChangeLog	2013-05-21 23:01:29 UTC (rev 150485)
@@ -1,3 +1,13 @@
+2013-05-21  Hugo Parente Lima  <[email protected]>
+
+        [EFL] Add missing #if guards on drag support methods
+        https://bugs.webkit.org/show_bug.cgi?id=116574
+
+        Reviewed by Christophe Dumez.
+
+        * platform/efl/PasteboardEfl.cpp:
+        (WebCore):
+
 2013-05-21  Antti Koivisto  <[email protected]>
 
         Remove stub HTMLContentElement

Modified: trunk/Source/WebCore/platform/efl/PasteboardEfl.cpp (150484 => 150485)


--- trunk/Source/WebCore/platform/efl/PasteboardEfl.cpp	2013-05-21 22:54:21 UTC (rev 150484)
+++ trunk/Source/WebCore/platform/efl/PasteboardEfl.cpp	2013-05-21 23:01:29 UTC (rev 150485)
@@ -98,6 +98,7 @@
     return createForCopyAndPaste();
 }
 
+#if ENABLE(DRAG_SUPPORT)
 PassOwnPtr<Pasteboard> Pasteboard::createForDragAndDrop()
 {
     return createForCopyAndPaste();
@@ -107,6 +108,7 @@
 {
     return createForCopyAndPaste();
 }
+#endif
 
 bool Pasteboard::hasData()
 {
@@ -143,10 +145,12 @@
     return Vector<String>();
 }
 
+#if ENABLE(DRAG_SUPPORT)
 void Pasteboard::setDragImage(DragImageRef, const IntPoint&)
 {
     notImplemented();
 }
+#endif
 
 void Pasteboard::writePasteboard(const Pasteboard&)
 {
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to