Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(202)

Unified Diff: content/common/drag_messages.h

Issue 18281002: Move WebDropData to content::DropData and split off conversion function. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix Mac build error. Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/common/browser_plugin/browser_plugin_messages.h ('k') | content/common/drag_traits.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/drag_messages.h
diff --git a/content/common/drag_messages.h b/content/common/drag_messages.h
index b297fa2e6949d47108fdc8bb2380f725cd890e44..3e2147886e3b147b293f565a8a92ca97066bada1 100644
--- a/content/common/drag_messages.h
+++ b/content/common/drag_messages.h
@@ -7,19 +7,19 @@
#include "content/common/drag_event_source_info.h"
#include "content/public/common/common_param_traits.h"
+#include "content/public/common/drop_data.h"
#include "ipc/ipc_message_macros.h"
#include "third_party/skia/include/core/SkBitmap.h"
#include "third_party/WebKit/public/web/WebDragOperation.h"
#include "ui/gfx/point.h"
#include "ui/gfx/vector2d.h"
-#include "webkit/common/webdropdata.h"
#define IPC_MESSAGE_START DragMsgStart
// Messages sent from the browser to the renderer.
IPC_MESSAGE_ROUTED5(DragMsg_TargetDragEnter,
- WebDropData /* drop_data */,
+ content::DropData /* drop_data */,
gfx::Point /* client_pt */,
gfx::Point /* screen_pt */,
WebKit::WebDragOperationsMask /* ops_allowed */,
@@ -52,11 +52,11 @@ IPC_MESSAGE_ROUTED0(DragMsg_SourceSystemDragEnded)
// Messages sent from the renderer to the browser.
// Used to tell the parent the user started dragging in the content area. The
-// WebDropData struct contains contextual information about the pieces of the
+// DropData struct contains contextual information about the pieces of the
// page the user dragged. The parent uses this notification to initiate a
// drag session at the OS level.
IPC_MESSAGE_ROUTED5(DragHostMsg_StartDragging,
- WebDropData /* drop_data */,
+ content::DropData /* drop_data */,
WebKit::WebDragOperationsMask /* ops_allowed */,
SkBitmap /* image */,
gfx::Vector2d /* image_offset */,
« no previous file with comments | « content/common/browser_plugin/browser_plugin_messages.h ('k') | content/common/drag_traits.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698