summaryrefslogtreecommitdiff
path: root/chromium/content/common/drag_messages.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/content/common/drag_messages.h')
-rw-r--r--chromium/content/common/drag_messages.h18
1 files changed, 1 insertions, 17 deletions
diff --git a/chromium/content/common/drag_messages.h b/chromium/content/common/drag_messages.h
index b07f4bdd012..3e78d67c58b 100644
--- a/chromium/content/common/drag_messages.h
+++ b/chromium/content/common/drag_messages.h
@@ -12,7 +12,7 @@
#include "content/common/drag_event_source_info.h"
#include "content/public/common/drop_data.h"
#include "ipc/ipc_message_macros.h"
-#include "third_party/blink/public/platform/web_drag_operation.h"
+#include "third_party/blink/public/common/page/web_drag_operation.h"
#include "third_party/skia/include/core/SkBitmap.h"
#include "ui/gfx/geometry/point_f.h"
#include "ui/gfx/geometry/vector2d.h"
@@ -28,28 +28,12 @@ IPC_MESSAGE_ROUTED5(DragMsg_TargetDragEnter,
blink::WebDragOperationsMask /* ops_allowed */,
int /* key_modifiers */)
-IPC_MESSAGE_ROUTED4(DragMsg_TargetDragOver,
- gfx::PointF /* client_pt */,
- gfx::PointF /* screen_pt */,
- blink::WebDragOperationsMask /* ops_allowed */,
- int /* key_modifiers */)
-
-IPC_MESSAGE_ROUTED2(DragMsg_TargetDragLeave,
- gfx::PointF /* client_point */,
- gfx::PointF /* screen_point */)
-
IPC_MESSAGE_ROUTED4(DragMsg_TargetDrop,
content::DropData /* drop_data */,
gfx::PointF /* client_pt */,
gfx::PointF /* screen_pt */,
int /* key_modifiers */)
-// Notifies the renderer when and where the mouse-drag ended.
-IPC_MESSAGE_ROUTED3(DragMsg_SourceEnded,
- gfx::PointF /* client_pt */,
- gfx::PointF /* screen_pt */,
- blink::WebDragOperation /* drag_operation */)
-
// Messages sent from the renderer to the browser.
// Used to tell the parent the user started dragging in the content area. The