| 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 a67abf0682f9fe2c8af1384259be6dc9f6bffdf3..5aaa13f1087bb90d13ea0b85cb48192e85b27f3d 100644
|
| --- a/content/browser/renderer_host/render_view_host_impl.h
|
| +++ b/content/browser/renderer_host/render_view_host_impl.h
|
| @@ -166,14 +166,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;
|
|
|