| OLD | NEW |
| 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/platform/WebDragOperation.h" | 9 #include "third_party/WebKit/public/platform/WebDragOperation.h" |
| 10 #include "ui/gfx/geometry/point.h" | 10 #include "ui/gfx/geometry/point.h" |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 IPC_STRUCT_TRAITS_MEMBER(html) | 35 IPC_STRUCT_TRAITS_MEMBER(html) |
| 36 IPC_STRUCT_TRAITS_MEMBER(html_base_url) | 36 IPC_STRUCT_TRAITS_MEMBER(html_base_url) |
| 37 IPC_STRUCT_TRAITS_MEMBER(file_description_filename) | 37 IPC_STRUCT_TRAITS_MEMBER(file_description_filename) |
| 38 IPC_STRUCT_TRAITS_MEMBER(file_contents) | 38 IPC_STRUCT_TRAITS_MEMBER(file_contents) |
| 39 IPC_STRUCT_TRAITS_MEMBER(custom_data) | 39 IPC_STRUCT_TRAITS_MEMBER(custom_data) |
| 40 IPC_STRUCT_TRAITS_END() | 40 IPC_STRUCT_TRAITS_END() |
| 41 | 41 |
| 42 IPC_STRUCT_TRAITS_BEGIN(content::DropData::FileSystemFileInfo) | 42 IPC_STRUCT_TRAITS_BEGIN(content::DropData::FileSystemFileInfo) |
| 43 IPC_STRUCT_TRAITS_MEMBER(url) | 43 IPC_STRUCT_TRAITS_MEMBER(url) |
| 44 IPC_STRUCT_TRAITS_MEMBER(size) | 44 IPC_STRUCT_TRAITS_MEMBER(size) |
| 45 IPC_STRUCT_TRAITS_MEMBER(filesystem_id) |
| 45 IPC_STRUCT_TRAITS_END() | 46 IPC_STRUCT_TRAITS_END() |
| 46 | 47 |
| 47 IPC_STRUCT_TRAITS_BEGIN(content::DropData::Metadata) | 48 IPC_STRUCT_TRAITS_BEGIN(content::DropData::Metadata) |
| 48 IPC_STRUCT_TRAITS_MEMBER(kind) | 49 IPC_STRUCT_TRAITS_MEMBER(kind) |
| 49 IPC_STRUCT_TRAITS_MEMBER(mime_type) | 50 IPC_STRUCT_TRAITS_MEMBER(mime_type) |
| 50 IPC_STRUCT_TRAITS_MEMBER(filename) | 51 IPC_STRUCT_TRAITS_MEMBER(filename) |
| 51 IPC_STRUCT_TRAITS_MEMBER(file_system_url) | 52 IPC_STRUCT_TRAITS_MEMBER(file_system_url) |
| 52 IPC_STRUCT_TRAITS_END() | 53 IPC_STRUCT_TRAITS_END() |
| 53 | 54 |
| 54 IPC_STRUCT_TRAITS_BEGIN(content::DragEventSourceInfo) | 55 IPC_STRUCT_TRAITS_BEGIN(content::DragEventSourceInfo) |
| 55 IPC_STRUCT_TRAITS_MEMBER(event_location) | 56 IPC_STRUCT_TRAITS_MEMBER(event_location) |
| 56 IPC_STRUCT_TRAITS_MEMBER(event_source) | 57 IPC_STRUCT_TRAITS_MEMBER(event_source) |
| 57 IPC_STRUCT_TRAITS_END() | 58 IPC_STRUCT_TRAITS_END() |
| OLD | NEW |