Title: [148870] trunk/Source/WebCore
Revision
148870
Author
[email protected]
Date
2013-04-22 02:58:33 -0700 (Mon, 22 Apr 2013)

Log Message

[BlackBerry] Add dummy implementations of DragData::droppedFileSystemId()
https://bugs.webkit.org/show_bug.cgi?id=114861

Patch by Alberto Garcia <[email protected]> on 2013-04-22
Reviewed by Carlos Garcia Campos.

* platform/blackberry/DragDataBlackBerry.cpp:
(WebCore):
(WebCore::DragData::droppedFileSystemId):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (148869 => 148870)


--- trunk/Source/WebCore/ChangeLog	2013-04-22 09:20:45 UTC (rev 148869)
+++ trunk/Source/WebCore/ChangeLog	2013-04-22 09:58:33 UTC (rev 148870)
@@ -1,3 +1,14 @@
+2013-04-22  Alberto Garcia  <[email protected]>
+
+        [BlackBerry] Add dummy implementations of DragData::droppedFileSystemId()
+        https://bugs.webkit.org/show_bug.cgi?id=114861
+
+        Reviewed by Carlos Garcia Campos.
+
+        * platform/blackberry/DragDataBlackBerry.cpp:
+        (WebCore):
+        (WebCore::DragData::droppedFileSystemId):
+
 2013-04-22  Mihai Maerean  <[email protected]>
 
         [CSS Regions] Elements in a region should be assignable to a named flow

Modified: trunk/Source/WebCore/platform/blackberry/DragDataBlackBerry.cpp (148869 => 148870)


--- trunk/Source/WebCore/platform/blackberry/DragDataBlackBerry.cpp	2013-04-22 09:20:45 UTC (rev 148869)
+++ trunk/Source/WebCore/platform/blackberry/DragDataBlackBerry.cpp	2013-04-22 09:58:33 UTC (rev 148870)
@@ -92,4 +92,12 @@
     return 0;
 }
 
+#if ENABLE(FILE_SYSTEM)
+String DragData::droppedFileSystemId() const
+{
+    notImplemented();
+    return String();
+}
+#endif
+
 } // namespace WebCore
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to