OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2008, 2009, Google Inc. All rights reserved. | 2 * Copyright (c) 2008, 2009, Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 13 matching lines...) Expand all Loading... |
24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
29 */ | 29 */ |
30 | 30 |
31 #ifndef DataObject_h | 31 #ifndef DataObject_h |
32 #define DataObject_h | 32 #define DataObject_h |
33 | 33 |
| 34 #include "core/CoreExport.h" |
34 #include "core/clipboard/DataObjectItem.h" | 35 #include "core/clipboard/DataObjectItem.h" |
35 #include "platform/PasteMode.h" | 36 #include "platform/PasteMode.h" |
36 #include "platform/Supplementable.h" | 37 #include "platform/Supplementable.h" |
37 #include "platform/heap/Handle.h" | 38 #include "platform/heap/Handle.h" |
38 #include "wtf/ListHashSet.h" | 39 #include "wtf/ListHashSet.h" |
39 #include "wtf/RefCounted.h" | 40 #include "wtf/RefCounted.h" |
40 #include "wtf/RefPtr.h" | 41 #include "wtf/RefPtr.h" |
41 #include "wtf/Vector.h" | 42 #include "wtf/Vector.h" |
42 #include "wtf/text/StringHash.h" | 43 #include "wtf/text/StringHash.h" |
43 #include "wtf/text/WTFString.h" | 44 #include "wtf/text/WTFString.h" |
44 | 45 |
45 namespace blink { | 46 namespace blink { |
46 | 47 |
47 class KURL; | 48 class KURL; |
48 class SharedBuffer; | 49 class SharedBuffer; |
49 class WebDragData; | 50 class WebDragData; |
50 | 51 |
51 // A data object for holding data that would be in a clipboard or moved | 52 // A data object for holding data that would be in a clipboard or moved |
52 // during a drag-n-drop operation. This is the data that WebCore is aware | 53 // during a drag-n-drop operation. This is the data that WebCore is aware |
53 // of and is not specific to a platform. | 54 // of and is not specific to a platform. |
54 class DataObject : public RefCountedWillBeGarbageCollectedFinalized<DataObject>,
public WillBeHeapSupplementable<DataObject> { | 55 class CORE_EXPORT DataObject : public RefCountedWillBeGarbageCollectedFinalized<
DataObject>, public WillBeHeapSupplementable<DataObject> { |
55 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(DataObject); | 56 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(DataObject); |
56 public: | 57 public: |
57 static PassRefPtrWillBeRawPtr<DataObject> createFromPasteboard(PasteMode); | 58 static PassRefPtrWillBeRawPtr<DataObject> createFromPasteboard(PasteMode); |
58 static PassRefPtrWillBeRawPtr<DataObject> create(); | 59 static PassRefPtrWillBeRawPtr<DataObject> create(); |
59 static PassRefPtrWillBeRawPtr<DataObject> create(WebDragData); | 60 static PassRefPtrWillBeRawPtr<DataObject> create(WebDragData); |
60 | 61 |
61 virtual ~DataObject(); | 62 virtual ~DataObject(); |
62 | 63 |
63 // DataTransferItemList support. | 64 // DataTransferItemList support. |
64 size_t length() const; | 65 size_t length() const; |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
111 WillBeHeapVector<RefPtrWillBeMember<DataObjectItem>> m_itemList; | 112 WillBeHeapVector<RefPtrWillBeMember<DataObjectItem>> m_itemList; |
112 | 113 |
113 // State of Shift/Ctrl/Alt/Meta keys and Left/Right/Middle mouse buttons | 114 // State of Shift/Ctrl/Alt/Meta keys and Left/Right/Middle mouse buttons |
114 int m_modifiers; | 115 int m_modifiers; |
115 String m_filesystemId; | 116 String m_filesystemId; |
116 }; | 117 }; |
117 | 118 |
118 } // namespace blink | 119 } // namespace blink |
119 | 120 |
120 #endif | 121 #endif |
OLD | NEW |