| Index: Source/web/DragClientImpl.h
|
| diff --git a/Source/web/DragClientImpl.h b/Source/web/DragClientImpl.h
|
| index 0d22e0e89d4bda9faec22cbf3a5673b210594c7a..25685e75a5e38d7d7cd124267b65d9f1affb14a8 100644
|
| --- a/Source/web/DragClientImpl.h
|
| +++ b/Source/web/DragClientImpl.h
|
| @@ -38,18 +38,18 @@ namespace blink {
|
|
|
| class WebViewImpl;
|
|
|
| -class DragClientImpl FINAL : public DragClient {
|
| +class DragClientImpl final : public DragClient {
|
| public:
|
| explicit DragClientImpl(WebViewImpl* webView) : m_webView(webView) { }
|
|
|
| - virtual DragDestinationAction actionMaskForDrag(DragData*) OVERRIDE;
|
| + virtual DragDestinationAction actionMaskForDrag(DragData*) override;
|
| virtual void startDrag(
|
| DragImage*,
|
| const IntPoint& dragImageOrigin,
|
| const IntPoint& eventPos,
|
| DataTransfer*,
|
| LocalFrame*,
|
| - bool isLinkDrag = false) OVERRIDE;
|
| + bool isLinkDrag = false) override;
|
|
|
| private:
|
| WebViewImpl* m_webView;
|
|
|