summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/WebKit/Source/web/DragClientImpl.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/WebKit/Source/web/DragClientImpl.h')
-rw-r--r--chromium/third_party/WebKit/Source/web/DragClientImpl.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/chromium/third_party/WebKit/Source/web/DragClientImpl.h b/chromium/third_party/WebKit/Source/web/DragClientImpl.h
index 0d8a640d725..7c47496aed9 100644
--- a/chromium/third_party/WebKit/Source/web/DragClientImpl.h
+++ b/chromium/third_party/WebKit/Source/web/DragClientImpl.h
@@ -45,18 +45,18 @@ class KURL;
namespace blink {
class WebViewImpl;
-class DragClientImpl : public WebCore::DragClient {
+class DragClientImpl FINAL : public WebCore::DragClient {
public:
DragClientImpl(WebViewImpl* webView) : m_webView(webView) { }
- virtual WebCore::DragDestinationAction actionMaskForDrag(WebCore::DragData*);
+ virtual WebCore::DragDestinationAction actionMaskForDrag(WebCore::DragData*) OVERRIDE;
virtual void startDrag(
WebCore::DragImage*,
const WebCore::IntPoint& dragImageOrigin,
const WebCore::IntPoint& eventPos,
WebCore::Clipboard* clipboard,
- WebCore::Frame* frame,
- bool isLinkDrag = false);
+ WebCore::LocalFrame* frame,
+ bool isLinkDrag = false) OVERRIDE;
private:
WebViewImpl* m_webView;