| Index: Source/web/WebViewImpl.h
|
| diff --git a/Source/web/WebViewImpl.h b/Source/web/WebViewImpl.h
|
| index 5531d7a55ffa737936a8ffc3abafd0991b0c59fe..0167060ec5481d30a69db4becfb8bdb5b7d576f1 100644
|
| --- a/Source/web/WebViewImpl.h
|
| +++ b/Source/web/WebViewImpl.h
|
| @@ -244,17 +244,17 @@ public:
|
| const WebPoint& clientPoint,
|
| const WebPoint& screenPoint,
|
| WebDragOperationsMask operationsAllowed,
|
| - int keyModifiers) override;
|
| + int modifiers) override;
|
| virtual WebDragOperation dragTargetDragOver(
|
| const WebPoint& clientPoint,
|
| const WebPoint& screenPoint,
|
| WebDragOperationsMask operationsAllowed,
|
| - int keyModifiers) override;
|
| + int modifiers) override;
|
| virtual void dragTargetDragLeave() override;
|
| virtual void dragTargetDrop(
|
| const WebPoint& clientPoint,
|
| const WebPoint& screenPoint,
|
| - int keyModifiers) override;
|
| + int modifiers) override;
|
| virtual void spellingMarkers(WebVector<uint32_t>* markers) override;
|
| virtual void removeSpellingMarkersUnderWords(const WebVector<WebString>& words) override;
|
| virtual unsigned long createUniqueIdentifierForRequest() override;
|
| @@ -590,7 +590,7 @@ private:
|
| WebDragOperation dragTargetDragEnterOrOver(const WebPoint& clientPoint,
|
| const WebPoint& screenPoint,
|
| DragAction,
|
| - int keyModifiers);
|
| + int modifiers);
|
|
|
| void configureAutoResizeMode();
|
|
|
|
|