| Index: Source/web/DragClientImpl.h
|
| diff --git a/Source/web/DragClientImpl.h b/Source/web/DragClientImpl.h
|
| index 156ef2ba8e3571c828c6359e12e8425ef6bf7bcf..0d22e0e89d4bda9faec22cbf3a5673b210594c7a 100644
|
| --- a/Source/web/DragClientImpl.h
|
| +++ b/Source/web/DragClientImpl.h
|
| @@ -35,19 +35,20 @@
|
| #include "core/page/DragClient.h"
|
|
|
| namespace blink {
|
| +
|
| class WebViewImpl;
|
|
|
| -class DragClientImpl FINAL : public blink::DragClient {
|
| +class DragClientImpl FINAL : public DragClient {
|
| public:
|
| explicit DragClientImpl(WebViewImpl* webView) : m_webView(webView) { }
|
|
|
| - virtual blink::DragDestinationAction actionMaskForDrag(blink::DragData*) OVERRIDE;
|
| + virtual DragDestinationAction actionMaskForDrag(DragData*) OVERRIDE;
|
| virtual void startDrag(
|
| - blink::DragImage*,
|
| - const blink::IntPoint& dragImageOrigin,
|
| - const blink::IntPoint& eventPos,
|
| - blink::DataTransfer*,
|
| - blink::LocalFrame* frame,
|
| + DragImage*,
|
| + const IntPoint& dragImageOrigin,
|
| + const IntPoint& eventPos,
|
| + DataTransfer*,
|
| + LocalFrame*,
|
| bool isLinkDrag = false) OVERRIDE;
|
|
|
| private:
|
|
|