Index: content/browser/browser_plugin/browser_plugin_guest.h |
diff --git a/content/browser/browser_plugin/browser_plugin_guest.h b/content/browser/browser_plugin/browser_plugin_guest.h |
index 66f03e46bbf41a12672e8c8a1682e6a124cd0517..afe55c8ab7c214af98d70e5ae20b6a58f9f96131 100644 |
--- a/content/browser/browser_plugin/browser_plugin_guest.h |
+++ b/content/browser/browser_plugin/browser_plugin_guest.h |
@@ -256,6 +256,15 @@ class CONTENT_EXPORT BrowserPluginGuest |
// |message|. |
static bool ShouldForwardToBrowserPluginGuest(const IPC::Message& message); |
+ void DragSourceEndedAt(int client_x, int client_y, int screen_x, |
+ int screen_y, WebKit::WebDragOperation operation); |
+ |
+ void DragSourceMovedTo(int client_x, int client_y, |
+ int screen_x, int screen_y); |
+ |
+ // Called when the drag started by this guest ends at an OS-level. |
+ void EndSystemDrag(); |
+ |
private: |
typedef std::pair<MediaStreamRequest, MediaResponseCallback> |
MediaStreamRequestAndCallbackPair; |
@@ -386,6 +395,7 @@ class CONTENT_EXPORT BrowserPluginGuest |
// Message handlers for messages from guest. |
+ void OnDragStopped(); |
void OnHandleInputEventAck( |
WebKit::WebInputEvent::Type event_type, |
InputEventAckState ack_result); |
@@ -399,7 +409,6 @@ class CONTENT_EXPORT BrowserPluginGuest |
void OnShowWidget(int route_id, const gfx::Rect& initial_pos); |
// Overriden in tests. |
virtual void OnTakeFocus(bool reverse); |
- void OnUpdateDragCursor(WebKit::WebDragOperation operation); |
void OnUpdateFrameName(int frame_id, |
bool is_top_level, |
const std::string& name); |