| 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 26 matching lines...) Expand all Loading... |
| 37 namespace blink { | 37 namespace blink { |
| 38 | 38 |
| 39 class DataObject; | 39 class DataObject; |
| 40 class DataTransferItemList; | 40 class DataTransferItemList; |
| 41 class DragImage; | 41 class DragImage; |
| 42 class Element; | 42 class Element; |
| 43 class FileList; | 43 class FileList; |
| 44 class FrameSelection; | 44 class FrameSelection; |
| 45 class LocalFrame; | 45 class LocalFrame; |
| 46 class Node; | 46 class Node; |
| 47 class Range; | |
| 48 | 47 |
| 49 // Used for drag and drop and copy/paste. | 48 // Used for drag and drop and copy/paste. |
| 50 // Drag and Drop: | 49 // Drag and Drop: |
| 51 // http://www.whatwg.org/specs/web-apps/current-work/multipage/dnd.html | 50 // http://www.whatwg.org/specs/web-apps/current-work/multipage/dnd.html |
| 52 // Clipboard API (copy/paste): | 51 // Clipboard API (copy/paste): |
| 53 // http://dev.w3.org/2006/webapi/clipops/clipops.html | 52 // http://dev.w3.org/2006/webapi/clipops/clipops.html |
| 54 class CORE_EXPORT DataTransfer final | 53 class CORE_EXPORT DataTransfer final |
| 55 : public GarbageCollectedFinalized<DataTransfer>, | 54 : public GarbageCollectedFinalized<DataTransfer>, |
| 56 public ScriptWrappable { | 55 public ScriptWrappable { |
| 57 DEFINE_WRAPPERTYPEINFO(); | 56 DEFINE_WRAPPERTYPEINFO(); |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 146 Member<Node> m_dragImageElement; | 145 Member<Node> m_dragImageElement; |
| 147 }; | 146 }; |
| 148 | 147 |
| 149 DragOperation convertDropZoneOperationToDragOperation( | 148 DragOperation convertDropZoneOperationToDragOperation( |
| 150 const String& dragOperation); | 149 const String& dragOperation); |
| 151 String convertDragOperationToDropZoneOperation(DragOperation); | 150 String convertDragOperationToDropZoneOperation(DragOperation); |
| 152 | 151 |
| 153 } // namespace blink | 152 } // namespace blink |
| 154 | 153 |
| 155 #endif // DataTransfer_h | 154 #endif // DataTransfer_h |
| OLD | NEW |