Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(331)

Unified Diff: Source/web/WebViewImpl.h

Issue 879333002: Support buttons attribute for drag event (blink side). (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebase Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/web/WebInputEventConversion.cpp ('k') | Source/web/WebViewImpl.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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();
« no previous file with comments | « Source/web/WebInputEventConversion.cpp ('k') | Source/web/WebViewImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698