| Index: content/renderer/render_view_impl.h
|
| diff --git a/content/renderer/render_view_impl.h b/content/renderer/render_view_impl.h
|
| index 8e5522a2db4342d4d1409dee4717c2177cebe7bd..c3ccffde5915aa5d0ba22ea4d9efbd0cc2148862 100644
|
| --- a/content/renderer/render_view_impl.h
|
| +++ b/content/renderer/render_view_impl.h
|
| @@ -838,15 +838,18 @@ class RenderViewImpl : public RenderWidget,
|
| WebKit::WebDragOperation drag_operation);
|
| void OnDragSourceSystemDragEnded();
|
| void OnDragTargetDrop(const gfx::Point& client_pt,
|
| - const gfx::Point& screen_pt);
|
| + const gfx::Point& screen_pt,
|
| + int key_modifiers);
|
| void OnDragTargetDragEnter(const WebDropData& drop_data,
|
| const gfx::Point& client_pt,
|
| const gfx::Point& screen_pt,
|
| - WebKit::WebDragOperationsMask operations_allowed);
|
| + WebKit::WebDragOperationsMask operations_allowed,
|
| + int key_modifiers);
|
| void OnDragTargetDragLeave();
|
| void OnDragTargetDragOver(const gfx::Point& client_pt,
|
| const gfx::Point& screen_pt,
|
| - WebKit::WebDragOperationsMask operations_allowed);
|
| + WebKit::WebDragOperationsMask operations_allowed,
|
| + int key_modifiers);
|
| void OnEnablePreferredSizeChangedMode();
|
| void OnEnableAutoResize(const gfx::Size& min_size, const gfx::Size& max_size);
|
| void OnDisableAutoResize(const gfx::Size& new_size);
|
|
|