| Index: content/renderer/render_view_impl.h
|
| diff --git a/content/renderer/render_view_impl.h b/content/renderer/render_view_impl.h
|
| index 64085806118d287c739193f6de4aa3a704a384a5..b64f698e5cdad83f4c88e6121b818fa45338746e 100644
|
| --- a/content/renderer/render_view_impl.h
|
| +++ b/content/renderer/render_view_impl.h
|
| @@ -842,15 +842,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);
|
|
|