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

Unified Diff: third_party/WebKit/public/web/WebView.h

Issue 2396693002: Convert drag event position to root frame. (Closed)
Patch Set: rebase Created 4 years, 2 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 | « third_party/WebKit/Source/web/WebViewImpl.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/public/web/WebView.h
diff --git a/third_party/WebKit/public/web/WebView.h b/third_party/WebKit/public/web/WebView.h
index 61b82fa56cca74dec98cb17e8a326d9eafd697f2..d877ff0a65a8aa52baae430abc0a0fdecc71dc45 100644
--- a/third_party/WebKit/public/web/WebView.h
+++ b/third_party/WebKit/public/web/WebView.h
@@ -370,7 +370,7 @@ class WebView : protected WebWidget {
const WebSize& tapArea) = 0;
// Notifies the WebView that a drag has terminated.
- virtual void dragSourceEndedAt(const WebPoint& clientPoint,
+ virtual void dragSourceEndedAt(const WebPoint& pointInViewport,
const WebPoint& screenPoint,
WebDragOperation operation) = 0;
@@ -381,18 +381,18 @@ class WebView : protected WebWidget {
// something on the WebView.
virtual WebDragOperation dragTargetDragEnter(
const WebDragData&,
- const WebPoint& clientPoint,
+ const WebPoint& pointInViewport,
const WebPoint& screenPoint,
WebDragOperationsMask operationsAllowed,
int modifiers) = 0;
virtual WebDragOperation dragTargetDragOver(
- const WebPoint& clientPoint,
+ const WebPoint& pointInViewport,
const WebPoint& screenPoint,
WebDragOperationsMask operationsAllowed,
int modifiers) = 0;
virtual void dragTargetDragLeave() = 0;
virtual void dragTargetDrop(const WebDragData&,
- const WebPoint& clientPoint,
+ const WebPoint& pointInViewport,
const WebPoint& screenPoint,
int modifiers) = 0;
« no previous file with comments | « third_party/WebKit/Source/web/WebViewImpl.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698