| Index: content/browser/renderer_host/render_widget_host_impl.h
|
| diff --git a/content/browser/renderer_host/render_widget_host_impl.h b/content/browser/renderer_host/render_widget_host_impl.h
|
| index eb69fce58933f696fe3b2e2f7293b19d713581e4..634384faf0941f5450f40e9eb25c37ea99b0ceb3 100644
|
| --- a/content/browser/renderer_host/render_widget_host_impl.h
|
| +++ b/content/browser/renderer_host/render_widget_host_impl.h
|
| @@ -33,6 +33,7 @@
|
| #include "content/browser/renderer_host/input/touch_emulator_client.h"
|
| #include "content/browser/renderer_host/render_widget_host_delegate.h"
|
| #include "content/browser/renderer_host/render_widget_host_view_base.h"
|
| +#include "content/common/drag_event_source_info.h"
|
| #include "content/common/input/input_event_ack_state.h"
|
| #include "content/common/input/synthetic_gesture_packet.h"
|
| #include "content/common/view_message_enums.h"
|
| @@ -565,6 +566,7 @@ class CONTENT_EXPORT RenderWidgetHostImpl : public RenderWidgetHost,
|
|
|
| private:
|
| friend class MockRenderWidgetHost;
|
| + friend class TestRenderViewHost;
|
|
|
| // Tell this object to destroy itself. If |also_delete| is specified, the
|
| // destructor is called as well.
|
| @@ -611,6 +613,11 @@ class CONTENT_EXPORT RenderWidgetHostImpl : public RenderWidgetHost,
|
| void OnForwardCompositorProto(const std::vector<uint8_t>& proto);
|
| void OnSetNeedsBeginFrames(bool needs_begin_frames);
|
| void OnHittestData(const FrameHostMsg_HittestData_Params& params);
|
| + void OnStartDragging(const DropData& drop_data,
|
| + blink::WebDragOperationsMask operations_allowed,
|
| + const SkBitmap& bitmap,
|
| + const gfx::Vector2d& bitmap_offset_in_dip,
|
| + const DragEventSourceInfo& event_info);
|
|
|
| // Called (either immediately or asynchronously) after we're done with our
|
| // BackingStore and can send an ACK to the renderer so it can paint onto it
|
|
|