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

Side by Side Diff: content/common/drag_traits.h

Issue 1723763002: Add WebDragData to blink::WebView::dragtargetDrop (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: comments Created 4 years, 8 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "content/common/drag_event_source_info.h" 5 #include "content/common/drag_event_source_info.h"
6 #include "content/public/common/common_param_traits.h" 6 #include "content/public/common/common_param_traits.h"
7 #include "content/public/common/drop_data.h" 7 #include "content/public/common/drop_data.h"
8 #include "ipc/ipc_message_macros.h" 8 #include "ipc/ipc_message_macros.h"
9 #include "third_party/WebKit/public/web/WebDragOperation.h" 9 #include "third_party/WebKit/public/web/WebDragOperation.h"
10 #include "ui/gfx/geometry/point.h" 10 #include "ui/gfx/geometry/point.h"
11 11
12 #define IPC_MESSAGE_START DragMsgStart 12 #define IPC_MESSAGE_START DragMsgStart
13 13
14 IPC_ENUM_TRAITS(blink::WebDragOperation) // Bitmask. 14 IPC_ENUM_TRAITS(blink::WebDragOperation) // Bitmask.
15 IPC_ENUM_TRAITS_MAX_VALUE(ui::DragDropTypes::DragEventSource, 15 IPC_ENUM_TRAITS_MAX_VALUE(ui::DragDropTypes::DragEventSource,
16 ui::DragDropTypes::DRAG_EVENT_SOURCE_LAST) 16 ui::DragDropTypes::DRAG_EVENT_SOURCE_LAST)
17 IPC_ENUM_TRAITS_MAX_VALUE(content::DropDataKind, content::DROP_DATA_KIND_LAST)
17 18
18 IPC_STRUCT_TRAITS_BEGIN(ui::FileInfo) 19 IPC_STRUCT_TRAITS_BEGIN(ui::FileInfo)
19 IPC_STRUCT_TRAITS_MEMBER(path) 20 IPC_STRUCT_TRAITS_MEMBER(path)
20 IPC_STRUCT_TRAITS_MEMBER(display_name) 21 IPC_STRUCT_TRAITS_MEMBER(display_name)
21 IPC_STRUCT_TRAITS_END() 22 IPC_STRUCT_TRAITS_END()
22 23
23 IPC_STRUCT_TRAITS_BEGIN(content::DropData) 24 IPC_STRUCT_TRAITS_BEGIN(content::DropData)
24 IPC_STRUCT_TRAITS_MEMBER(url) 25 IPC_STRUCT_TRAITS_MEMBER(url)
25 IPC_STRUCT_TRAITS_MEMBER(url_title) 26 IPC_STRUCT_TRAITS_MEMBER(url_title)
26 IPC_STRUCT_TRAITS_MEMBER(download_metadata) 27 IPC_STRUCT_TRAITS_MEMBER(download_metadata)
(...skipping 11 matching lines...) Expand all
38 39
39 IPC_STRUCT_TRAITS_BEGIN(content::DropData::FileSystemFileInfo) 40 IPC_STRUCT_TRAITS_BEGIN(content::DropData::FileSystemFileInfo)
40 IPC_STRUCT_TRAITS_MEMBER(url) 41 IPC_STRUCT_TRAITS_MEMBER(url)
41 IPC_STRUCT_TRAITS_MEMBER(size) 42 IPC_STRUCT_TRAITS_MEMBER(size)
42 IPC_STRUCT_TRAITS_END() 43 IPC_STRUCT_TRAITS_END()
43 44
44 IPC_STRUCT_TRAITS_BEGIN(content::DragEventSourceInfo) 45 IPC_STRUCT_TRAITS_BEGIN(content::DragEventSourceInfo)
45 IPC_STRUCT_TRAITS_MEMBER(event_location) 46 IPC_STRUCT_TRAITS_MEMBER(event_location)
46 IPC_STRUCT_TRAITS_MEMBER(event_source) 47 IPC_STRUCT_TRAITS_MEMBER(event_source)
47 IPC_STRUCT_TRAITS_END() 48 IPC_STRUCT_TRAITS_END()
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698