| Index: third_party/WebKit/Source/core/clipboard/DataTransfer.cpp
|
| diff --git a/third_party/WebKit/Source/core/clipboard/DataTransfer.cpp b/third_party/WebKit/Source/core/clipboard/DataTransfer.cpp
|
| index 4beaad34b3f3524c2a04c12de36da84e331b6c2c..c31ff3a31a2ac627c5907b19684f7476f482d470 100644
|
| --- a/third_party/WebKit/Source/core/clipboard/DataTransfer.cpp
|
| +++ b/third_party/WebKit/Source/core/clipboard/DataTransfer.cpp
|
| @@ -43,7 +43,6 @@
|
| #include "platform/MIMETypeRegistry.h"
|
| #include "platform/clipboard/ClipboardMimeTypes.h"
|
| #include "platform/clipboard/ClipboardUtilities.h"
|
| -#include <memory>
|
|
|
| namespace blink {
|
|
|
| @@ -244,7 +243,7 @@ void DataTransfer::setDragImageElement(Node* node, const IntPoint& loc)
|
| setDragImage(0, node, loc);
|
| }
|
|
|
| -std::unique_ptr<DragImage> DataTransfer::createDragImage(IntPoint& loc, LocalFrame* frame) const
|
| +PassOwnPtr<DragImage> DataTransfer::createDragImage(IntPoint& loc, LocalFrame* frame) const
|
| {
|
| if (m_dragImageElement) {
|
| loc = m_dragLoc;
|
|
|