Title: [161081] trunk/Source/WebCore
- Revision
- 161081
- Author
- [email protected]
- Date
- 2013-12-25 19:03:52 -0800 (Wed, 25 Dec 2013)
Log Message
[Nix] Adding createDragImageIconForCachedImageFilename method to DragImageNix
https://bugs.webkit.org/show_bug.cgi?id=126230
Reviewed by Daniel Bates.
Also returning nullptr in other functions that were returning 0 as a pointer.
* platform/nix/DragImageNix.cpp:
(WebCore::createDragImageFromImage):
(WebCore::createDragImageIconForCachedImage):
(WebCore::createDragImageIconForCachedImageFilename):
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (161080 => 161081)
--- trunk/Source/WebCore/ChangeLog 2013-12-26 02:57:54 UTC (rev 161080)
+++ trunk/Source/WebCore/ChangeLog 2013-12-26 03:03:52 UTC (rev 161081)
@@ -1,5 +1,19 @@
2013-12-25 Thiago de Barros Lacerda <[email protected]>
+ [Nix] Adding createDragImageIconForCachedImageFilename method to DragImageNix
+ https://bugs.webkit.org/show_bug.cgi?id=126230
+
+ Reviewed by Daniel Bates.
+
+ Also returning nullptr in other functions that were returning 0 as a pointer.
+
+ * platform/nix/DragImageNix.cpp:
+ (WebCore::createDragImageFromImage):
+ (WebCore::createDragImageIconForCachedImage):
+ (WebCore::createDragImageIconForCachedImageFilename):
+
+2013-12-25 Thiago de Barros Lacerda <[email protected]>
+
[Nix] Fixing DragData::asFragment signature in DragDataNix.cpp
https://bugs.webkit.org/show_bug.cgi?id=126229
Modified: trunk/Source/WebCore/platform/nix/DragImageNix.cpp (161080 => 161081)
--- trunk/Source/WebCore/platform/nix/DragImageNix.cpp 2013-12-26 02:57:54 UTC (rev 161080)
+++ trunk/Source/WebCore/platform/nix/DragImageNix.cpp 2013-12-26 03:03:52 UTC (rev 161081)
@@ -58,13 +58,19 @@
DragImageRef createDragImageFromImage(Image*, ImageOrientationDescription)
{
notImplemented();
- return 0;
+ return nullptr;
}
DragImageRef createDragImageIconForCachedImage(CachedImage*)
{
notImplemented();
- return 0;
+ return nullptr;
}
+DragImageRef createDragImageIconForCachedImageFilename(const String&)
+{
+ notImplemented();
+ return nullptr;
}
+
+}
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes