Title: [154350] trunk/Source/WebCore
Revision
154350
Author
[email protected]
Date
2013-08-20 12:33:43 -0700 (Tue, 20 Aug 2013)

Log Message

Build fix after <http://trac.webkit.org/changeset/154260> (https://webkit.org/b/119949);
declare Clipboard::hasData() when building with and without drag support

* dom/Clipboard.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (154349 => 154350)


--- trunk/Source/WebCore/ChangeLog	2013-08-20 19:21:36 UTC (rev 154349)
+++ trunk/Source/WebCore/ChangeLog	2013-08-20 19:33:43 UTC (rev 154350)
@@ -1,3 +1,10 @@
+2013-08-20  Daniel Bates  <[email protected]>
+
+        Build fix after <http://trac.webkit.org/changeset/154260> (https://webkit.org/b/119949);
+        declare Clipboard::hasData() when building with and without drag support
+
+        * dom/Clipboard.h:
+
 2013-08-20  Hans Muller  <[email protected]>
 
         <https://webkit.org/b/119849> [CSS Shapes] Complete RasterShape::firstIncludedIntervalLogicalTop()

Modified: trunk/Source/WebCore/dom/Clipboard.h (154349 => 154350)


--- trunk/Source/WebCore/dom/Clipboard.h	2013-08-20 19:21:36 UTC (rev 154349)
+++ trunk/Source/WebCore/dom/Clipboard.h	2013-08-20 19:33:43 UTC (rev 154350)
@@ -59,6 +59,8 @@
 
         PassRefPtr<FileList> files() const;
 
+        bool hasData();
+
         void clearData(const String& type);
         void clearData();
 
@@ -84,7 +86,6 @@
         static PassRefPtr<Clipboard> createForDragAndDrop(ClipboardAccessPolicy, const DragData&);
 
         bool dropEffectIsUninitialized() const { return m_dropEffect == "uninitialized"; }
-        bool hasData();
 
         DragOperation sourceOperation() const;
         DragOperation destinationOperation() const;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to