Index: Source/core/page/DragController.cpp |
diff --git a/Source/core/page/DragController.cpp b/Source/core/page/DragController.cpp |
index c9bf62090ba920feb6e81f198501d803a730953a..9ef0f234ca8759170d5faac7b8acd01ceb5959c8 100644 |
--- a/Source/core/page/DragController.cpp |
+++ b/Source/core/page/DragController.cpp |
@@ -171,7 +171,7 @@ static PassRefPtrWillBeRawPtr<DocumentFragment> documentFragmentFromDragData(Dra |
if (title.isEmpty()) |
title = url; |
} |
- RefPtr<Node> anchorText = document.createTextNode(title); |
+ RefPtrWillBeRawPtr<Node> anchorText = document.createTextNode(title); |
anchor->appendChild(anchorText); |
RefPtrWillBeRawPtr<DocumentFragment> fragment = document.createDocumentFragment(); |
fragment->appendChild(anchor); |