| Index: third_party/WebKit/Source/web/DragClientImpl.cpp
|
| diff --git a/third_party/WebKit/Source/web/DragClientImpl.cpp b/third_party/WebKit/Source/web/DragClientImpl.cpp
|
| index 052a6333ae84b046747098798bf474f6399ddce0..bf8f6625cec33d96c28caf72f88b93766706897a 100644
|
| --- a/third_party/WebKit/Source/web/DragClientImpl.cpp
|
| +++ b/third_party/WebKit/Source/web/DragClientImpl.cpp
|
| @@ -59,7 +59,7 @@ DragDestinationAction DragClientImpl::actionMaskForDrag(DragData*)
|
| void DragClientImpl::startDrag(DragImage* dragImage, const IntPoint& dragImageOrigin, const IntPoint& eventPos, DataTransfer* dataTransfer, LocalFrame* frame, bool isLinkDrag)
|
| {
|
| // Add a ref to the frame just in case a load occurs mid-drag.
|
| - RefPtrWillBeRawPtr<LocalFrame> frameProtector(frame);
|
| + RawPtr<LocalFrame> frameProtector(frame);
|
|
|
| WebDragData dragData = dataTransfer->dataObject()->toWebDragData();
|
| WebDragOperationsMask dragOperationMask = static_cast<WebDragOperationsMask>(dataTransfer->sourceOperation());
|
|
|