diff options
author | darin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-07-01 11:11:22 +0000 |
---|---|---|
committer | darin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-07-01 11:11:22 +0000 |
commit | dc293a7a4addd6d8b93194588a932b1249739914 (patch) | |
tree | 273bbf4d77409f6eb4fdf25681416e9de765bdd8 /content/common/drag_messages.h | |
parent | 33539eced948a06b9e8dd7891eadeb515921955a (diff) | |
download | chromium_src-dc293a7a4addd6d8b93194588a932b1249739914.zip chromium_src-dc293a7a4addd6d8b93194588a932b1249739914.tar.gz chromium_src-dc293a7a4addd6d8b93194588a932b1249739914.tar.bz2 |
Move WebDropData to content::DropData and split off conversion function.
The WebKit::WebDragData constructor is now provided by DropDataBuilder,
which lives in content/renderer/.
R=jam@chromium.org
TBR=cevans@chromium.org
BUG=237267
Review URL: https://chromiumcodereview.appspot.com/18281002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@209408 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/common/drag_messages.h')
-rw-r--r-- | content/common/drag_messages.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/content/common/drag_messages.h b/content/common/drag_messages.h index b297fa2..3e21478 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 */, |