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

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

Issue 63253002: Rename WebKit namespace to blink (part 3) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month 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 | Annotate | Revision Log
« no previous file with comments | « content/common/drag_messages.h ('k') | content/common/gamepad_hardware_buffer.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/point.h" 10 #include "ui/gfx/point.h"
11 11
12 #define IPC_MESSAGE_START DragMsgStart 12 #define IPC_MESSAGE_START DragMsgStart
13 13
14 IPC_ENUM_TRAITS(WebKit::WebDragOperation) 14 IPC_ENUM_TRAITS(blink::WebDragOperation)
15 15
16 IPC_STRUCT_TRAITS_BEGIN(content::DropData::FileInfo) 16 IPC_STRUCT_TRAITS_BEGIN(content::DropData::FileInfo)
17 IPC_STRUCT_TRAITS_MEMBER(path) 17 IPC_STRUCT_TRAITS_MEMBER(path)
18 IPC_STRUCT_TRAITS_MEMBER(display_name) 18 IPC_STRUCT_TRAITS_MEMBER(display_name)
19 IPC_STRUCT_TRAITS_END() 19 IPC_STRUCT_TRAITS_END()
20 20
21 IPC_STRUCT_TRAITS_BEGIN(content::DropData) 21 IPC_STRUCT_TRAITS_BEGIN(content::DropData)
22 IPC_STRUCT_TRAITS_MEMBER(url) 22 IPC_STRUCT_TRAITS_MEMBER(url)
23 IPC_STRUCT_TRAITS_MEMBER(url_title) 23 IPC_STRUCT_TRAITS_MEMBER(url_title)
24 IPC_STRUCT_TRAITS_MEMBER(download_metadata) 24 IPC_STRUCT_TRAITS_MEMBER(download_metadata)
25 IPC_STRUCT_TRAITS_MEMBER(referrer_policy) 25 IPC_STRUCT_TRAITS_MEMBER(referrer_policy)
26 IPC_STRUCT_TRAITS_MEMBER(filenames) 26 IPC_STRUCT_TRAITS_MEMBER(filenames)
27 IPC_STRUCT_TRAITS_MEMBER(filesystem_id) 27 IPC_STRUCT_TRAITS_MEMBER(filesystem_id)
28 IPC_STRUCT_TRAITS_MEMBER(text) 28 IPC_STRUCT_TRAITS_MEMBER(text)
29 IPC_STRUCT_TRAITS_MEMBER(html) 29 IPC_STRUCT_TRAITS_MEMBER(html)
30 IPC_STRUCT_TRAITS_MEMBER(html_base_url) 30 IPC_STRUCT_TRAITS_MEMBER(html_base_url)
31 IPC_STRUCT_TRAITS_MEMBER(file_description_filename) 31 IPC_STRUCT_TRAITS_MEMBER(file_description_filename)
32 IPC_STRUCT_TRAITS_MEMBER(file_contents) 32 IPC_STRUCT_TRAITS_MEMBER(file_contents)
33 IPC_STRUCT_TRAITS_MEMBER(custom_data) 33 IPC_STRUCT_TRAITS_MEMBER(custom_data)
34 IPC_STRUCT_TRAITS_END() 34 IPC_STRUCT_TRAITS_END()
35 35
36 IPC_ENUM_TRAITS(ui::DragDropTypes::DragEventSource) 36 IPC_ENUM_TRAITS(ui::DragDropTypes::DragEventSource)
37 37
38 IPC_STRUCT_TRAITS_BEGIN(content::DragEventSourceInfo) 38 IPC_STRUCT_TRAITS_BEGIN(content::DragEventSourceInfo)
39 IPC_STRUCT_TRAITS_MEMBER(event_location) 39 IPC_STRUCT_TRAITS_MEMBER(event_location)
40 IPC_STRUCT_TRAITS_MEMBER(event_source) 40 IPC_STRUCT_TRAITS_MEMBER(event_source)
41 IPC_STRUCT_TRAITS_END() 41 IPC_STRUCT_TRAITS_END()
OLDNEW
« no previous file with comments | « content/common/drag_messages.h ('k') | content/common/gamepad_hardware_buffer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698