| 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 0076281e4509ee1418ad9e47b0d06f82368c0ba1..200dc6377e59a3ad58db209700e31ec3b3aedb9a 100644
|
| --- a/content/public/browser/render_view_host.h
|
| +++ b/content/public/browser/render_view_host.h
|
| @@ -122,14 +122,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.
|
|
|