| Index: trunk/Source/core/page/DragData.cpp
|
| ===================================================================
|
| --- trunk/Source/core/page/DragData.cpp (revision 174395)
|
| +++ trunk/Source/core/page/DragData.cpp (working copy)
|
| @@ -131,7 +131,7 @@
|
| || containsFiles();
|
| }
|
|
|
| -PassRefPtrWillBeRawPtr<DocumentFragment> DragData::asFragment(LocalFrame* frame, PassRefPtrWillBeRawPtr<Range>, bool, bool&) const
|
| +PassRefPtr<DocumentFragment> DragData::asFragment(LocalFrame* frame, PassRefPtrWillBeRawPtr<Range>, bool, bool&) const
|
| {
|
| /*
|
| * Order is richest format first. On OSX this is:
|
| @@ -153,7 +153,7 @@
|
| KURL baseURL;
|
| m_platformDragData->htmlAndBaseURL(html, baseURL);
|
| ASSERT(frame->document());
|
| - if (RefPtrWillBeRawPtr<DocumentFragment> fragment = createFragmentFromMarkup(*frame->document(), html, baseURL, DisallowScriptingAndPluginContent))
|
| + if (RefPtr<DocumentFragment> fragment = createFragmentFromMarkup(*frame->document(), html, baseURL, DisallowScriptingAndPluginContent))
|
| return fragment.release();
|
| }
|
|
|
|
|