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 a963733a752719d356f85b5303f1232bf7bdac42..c8a8ee71969072684c28e4b92d792129bc668ead 100644 |
--- a/content/browser/renderer_host/render_view_host_impl.h |
+++ b/content/browser/renderer_host/render_view_host_impl.h |
@@ -120,7 +120,8 @@ class CONTENT_EXPORT RenderViewHostImpl : public RenderViewHost, |
blink::WebDragOperationsMask operations_allowed, |
int key_modifiers) override; |
void DragTargetDragLeave() override; |
- void DragTargetDrop(const gfx::Point& client_pt, |
+ void DragTargetDrop(const DropData& drop_data, |
+ const gfx::Point& client_pt, |
const gfx::Point& screen_pt, |
int key_modifiers) override; |
void EnableAutoResize(const gfx::Size& min_size, |
@@ -351,6 +352,7 @@ class CONTENT_EXPORT RenderViewHostImpl : public RenderViewHost, |
// files without the user's consent. |
void GrantFileAccessFromPageState(const PageState& validated_state); |
+ void FilterDropData(DropData& filtered_data); |
Avi (use Gerrit)
2016/04/08 21:24:08
Blank line after.
hush (inactive)
2016/04/12 00:07:49
Done.
|
// The RenderWidgetHost. |
scoped_ptr<RenderWidgetHostImpl> render_widget_host_; |