Index: content/browser/web_contents/web_contents_impl.h |
diff --git a/content/browser/web_contents/web_contents_impl.h b/content/browser/web_contents/web_contents_impl.h |
index dd40577b1906ab884dbe1bb59a550c0d85172ab1..39cf2aef93cbae2eed908816ae287efb343f1916 100644 |
--- a/content/browser/web_contents/web_contents_impl.h |
+++ b/content/browser/web_contents/web_contents_impl.h |
@@ -25,6 +25,7 @@ |
#include "content/public/common/renderer_preferences.h" |
#include "content/public/common/three_d_api_types.h" |
#include "net/base/load_states.h" |
+#include "third_party/WebKit/Source/WebKit/chromium/public/WebDragOperation.h" |
#include "ui/gfx/rect_f.h" |
#include "ui/gfx/size.h" |
#include "webkit/glue/resource_type.h" |
@@ -172,6 +173,17 @@ class CONTENT_EXPORT WebContentsImpl |
// Invoked before a form repost warning is shown. |
void NotifyBeforeFormRepostWarningShow(); |
+ |
+ // Informs the render view host and the BrowserPluginEmbedder, if present, of |
+ // a Drag Source End. |
+ void DragSourceEndedAt(int client_x, int client_y, int screen_x, |
+ int screen_y, WebKit::WebDragOperation operation); |
+ |
+ // Informs the render view host and the BrowserPluginEmbedder, if present, of |
+ // a Drag Source Move. |
+ void DragSourceMovedTo(int client_x, int client_y, |
+ int screen_x, int screen_y); |
+ |
// WebContents ------------------------------------------------------ |
virtual WebContentsDelegate* GetDelegate() OVERRIDE; |
virtual void SetDelegate(WebContentsDelegate* delegate) OVERRIDE; |