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

Unified Diff: content/public/browser/render_view_host.h

Issue 10377119: Plumb event flags (shift/alt/ctrl modifiers) for drag/drop events to WebKit. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 7 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
Index: content/public/browser/render_view_host.h
diff --git a/content/public/browser/render_view_host.h b/content/public/browser/render_view_host.h
index 991c868c9a23d38b9ae016f7637ddd55f1c74cbc..3d57db1d92fa7268930bbfa4f070c2e73728379d 100644
--- a/content/public/browser/render_view_host.h
+++ b/content/public/browser/render_view_host.h
@@ -119,14 +119,17 @@ class CONTENT_EXPORT RenderViewHost : virtual public RenderWidgetHost {
const WebDropData& drop_data,
const gfx::Point& client_pt,
const gfx::Point& screen_pt,
- WebKit::WebDragOperationsMask operations_allowed) = 0;
+ WebKit::WebDragOperationsMask operations_allowed,
+ int key_modifiers) = 0;
virtual void DragTargetDragOver(
const gfx::Point& client_pt,
const gfx::Point& screen_pt,
- WebKit::WebDragOperationsMask operations_allowed) = 0;
+ WebKit::WebDragOperationsMask operations_allowed,
+ int key_modifiers) = 0;
virtual void DragTargetDragLeave() = 0;
virtual void DragTargetDrop(const gfx::Point& client_pt,
- const gfx::Point& screen_pt) = 0;
+ const gfx::Point& screen_pt,
+ int key_modifiers) = 0;
// Instructs the RenderView to automatically resize and send back updates
// for the new size.

Powered by Google App Engine
This is Rietveld 408576698