| Index: Source/web/WebViewImpl.h
|
| diff --git a/Source/web/WebViewImpl.h b/Source/web/WebViewImpl.h
|
| index 747446549bab51b1d4336607941acf1e19488385..45356497a58f73171a39bba0778f5b4e9a4faffe 100644
|
| --- a/Source/web/WebViewImpl.h
|
| +++ b/Source/web/WebViewImpl.h
|
| @@ -241,17 +241,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;
|
| @@ -581,7 +581,7 @@ private:
|
| WebDragOperation dragTargetDragEnterOrOver(const WebPoint& clientPoint,
|
| const WebPoint& screenPoint,
|
| DragAction,
|
| - int keyModifiers);
|
| + int modifiers);
|
|
|
| void configureAutoResizeMode();
|
|
|
|
|