| 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 63573baefd7a13f9fee86757babe9d5420f0720e..0226028cee20c7d4701915b04e583ad7fb3f9f5d 100644
|
| --- a/content/browser/renderer_host/render_view_host_impl.h
|
| +++ b/content/browser/renderer_host/render_view_host_impl.h
|
| @@ -167,14 +167,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;
|
|
|