| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2001 Peter Kelly (pmk@post.com) | 2 * Copyright (C) 2001 Peter Kelly (pmk@post.com) |
| 3 * Copyright (C) 2001 Tobias Anton (anton@stud.fbi.fh-darmstadt.de) | 3 * Copyright (C) 2001 Tobias Anton (anton@stud.fbi.fh-darmstadt.de) |
| 4 * Copyright (C) 2006 Samuel Weinig (sam.weinig@gmail.com) | 4 * Copyright (C) 2006 Samuel Weinig (sam.weinig@gmail.com) |
| 5 * Copyright (C) 2003, 2004, 2005, 2006, 2008 Apple Inc. All rights reserved. | 5 * Copyright (C) 2003, 2004, 2005, 2006, 2008 Apple Inc. All rights reserved. |
| 6 * | 6 * |
| 7 * This library is free software; you can redistribute it and/or | 7 * This library is free software; you can redistribute it and/or |
| 8 * modify it under the terms of the GNU Library General Public | 8 * modify it under the terms of the GNU Library General Public |
| 9 * License as published by the Free Software Foundation; either | 9 * License as published by the Free Software Foundation; either |
| 10 * version 2 of the License, or (at your option) any later version. | 10 * version 2 of the License, or (at your option) any later version. |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 #define DataTransfer_h | 25 #define DataTransfer_h |
| 26 | 26 |
| 27 #include "bindings/core/v8/ScriptWrappable.h" | 27 #include "bindings/core/v8/ScriptWrappable.h" |
| 28 #include "core/CoreExport.h" | 28 #include "core/CoreExport.h" |
| 29 #include "core/clipboard/DataTransferAccessPolicy.h" | 29 #include "core/clipboard/DataTransferAccessPolicy.h" |
| 30 #include "core/fetch/ImageResource.h" | 30 #include "core/fetch/ImageResource.h" |
| 31 #include "core/page/DragActions.h" | 31 #include "core/page/DragActions.h" |
| 32 #include "platform/geometry/IntPoint.h" | 32 #include "platform/geometry/IntPoint.h" |
| 33 #include "platform/heap/Handle.h" | 33 #include "platform/heap/Handle.h" |
| 34 #include "wtf/Forward.h" | 34 #include "wtf/Forward.h" |
| 35 #include "wtf/RefCounted.h" | |
| 36 #include "wtf/RefPtr.h" | |
| 37 #include "wtf/Vector.h" | |
| 38 | 35 |
| 39 namespace blink { | 36 namespace blink { |
| 40 | 37 |
| 41 class DataObject; | 38 class DataObject; |
| 42 class DataTransferItemList; | 39 class DataTransferItemList; |
| 43 class DragImage; | 40 class DragImage; |
| 44 class Element; | 41 class Element; |
| 45 class FileList; | 42 class FileList; |
| 46 class FrameSelection; | 43 class FrameSelection; |
| 47 class LocalFrame; | 44 class LocalFrame; |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 Member<ImageResource> m_dragImage; | 130 Member<ImageResource> m_dragImage; |
| 134 Member<Node> m_dragImageElement; | 131 Member<Node> m_dragImageElement; |
| 135 }; | 132 }; |
| 136 | 133 |
| 137 DragOperation convertDropZoneOperationToDragOperation(const String& dragOperatio
n); | 134 DragOperation convertDropZoneOperationToDragOperation(const String& dragOperatio
n); |
| 138 String convertDragOperationToDropZoneOperation(DragOperation); | 135 String convertDragOperationToDropZoneOperation(DragOperation); |
| 139 | 136 |
| 140 } // namespace blink | 137 } // namespace blink |
| 141 | 138 |
| 142 #endif // DataTransfer_h | 139 #endif // DataTransfer_h |
| OLD | NEW |