| Index: content/browser/renderer_host/render_view_host_impl.h
|
| diff --git a/content/browser/renderer_host/render_view_host_impl.h b/content/browser/renderer_host/render_view_host_impl.h
|
| index 424c60e0fc474f09dce023727e06dc777d91f12b..62bb3ed62e2fbe7f8fa469b32b4b0aeb02056b4b 100644
|
| --- a/content/browser/renderer_host/render_view_host_impl.h
|
| +++ b/content/browser/renderer_host/render_view_host_impl.h
|
| @@ -169,14 +169,17 @@ class CONTENT_EXPORT RenderViewHostImpl
|
| const WebDropData& drop_data,
|
| const gfx::Point& client_pt,
|
| const gfx::Point& screen_pt,
|
| - WebKit::WebDragOperationsMask operations_allowed) OVERRIDE;
|
| + WebKit::WebDragOperationsMask operations_allowed,
|
| + int key_modifiers) OVERRIDE;
|
| virtual void DragTargetDragOver(
|
| const gfx::Point& client_pt,
|
| const gfx::Point& screen_pt,
|
| - WebKit::WebDragOperationsMask operations_allowed) OVERRIDE;
|
| + WebKit::WebDragOperationsMask operations_allowed,
|
| + int key_modifiers) OVERRIDE;
|
| virtual void DragTargetDragLeave() OVERRIDE;
|
| virtual void DragTargetDrop(const gfx::Point& client_pt,
|
| - const gfx::Point& screen_pt) OVERRIDE;
|
| + const gfx::Point& screen_pt,
|
| + int key_modifiers) OVERRIDE;
|
| virtual void EnableAutoResize(const gfx::Size& min_size,
|
| const gfx::Size& max_size) OVERRIDE;
|
| virtual void DisableAutoResize(const gfx::Size& new_size) OVERRIDE;
|
|
|