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 10 matching lines...) Expand all Loading... |
21 * | 21 * |
22 */ | 22 */ |
23 | 23 |
24 #ifndef Clipboard_h | 24 #ifndef Clipboard_h |
25 #define Clipboard_h | 25 #define Clipboard_h |
26 | 26 |
27 #include "bindings/v8/ScriptWrappable.h" | 27 #include "bindings/v8/ScriptWrappable.h" |
28 #include "core/dom/ClipboardAccessPolicy.h" | 28 #include "core/dom/ClipboardAccessPolicy.h" |
29 #include "core/fetch/ResourcePtr.h" | 29 #include "core/fetch/ResourcePtr.h" |
30 #include "core/page/DragActions.h" | 30 #include "core/page/DragActions.h" |
31 #include "core/platform/graphics/IntPoint.h" | 31 #include "platform/geometry/IntPoint.h" |
32 #include "wtf/Forward.h" | 32 #include "wtf/Forward.h" |
33 #include "wtf/RefCounted.h" | 33 #include "wtf/RefCounted.h" |
34 #include "wtf/RefPtr.h" | 34 #include "wtf/RefPtr.h" |
35 #include "wtf/Vector.h" | 35 #include "wtf/Vector.h" |
36 | 36 |
37 namespace WebCore { | 37 namespace WebCore { |
38 | 38 |
39 class ChromiumDataObject; | 39 class ChromiumDataObject; |
40 class DataTransferItemList; | 40 class DataTransferItemList; |
41 class DragImage; | 41 class DragImage; |
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
130 ResourcePtr<ImageResource> m_dragImage; | 130 ResourcePtr<ImageResource> m_dragImage; |
131 RefPtr<Node> m_dragImageElement; | 131 RefPtr<Node> m_dragImageElement; |
132 }; | 132 }; |
133 | 133 |
134 DragOperation convertDropZoneOperationToDragOperation(const String& dragOperatio
n); | 134 DragOperation convertDropZoneOperationToDragOperation(const String& dragOperatio
n); |
135 String convertDragOperationToDropZoneOperation(DragOperation); | 135 String convertDragOperationToDropZoneOperation(DragOperation); |
136 | 136 |
137 } // namespace WebCore | 137 } // namespace WebCore |
138 | 138 |
139 #endif // Clipboard_h | 139 #endif // Clipboard_h |
OLD | NEW |