OLD | NEW |
---|---|
1 /* | 1 /* |
2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 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 18 matching lines...) Expand all Loading... | |
29 */ | 29 */ |
30 | 30 |
31 #ifndef WebDragData_h | 31 #ifndef WebDragData_h |
32 #define WebDragData_h | 32 #define WebDragData_h |
33 | 33 |
34 #include "WebCommon.h" | 34 #include "WebCommon.h" |
35 #include "WebData.h" | 35 #include "WebData.h" |
36 #include "WebString.h" | 36 #include "WebString.h" |
37 #include "WebURL.h" | 37 #include "WebURL.h" |
38 | 38 |
39 #if BLINK_IMPLEMENTATION | |
tkent
2014/02/19 09:54:44
Please do not remove the #if. It helps to avoid u
haraken
2014/02/19 10:37:24
Done. I reverted this #if and added #if to the lin
| |
40 namespace WebCore { class DataObject; } | 39 namespace WebCore { class DataObject; } |
41 namespace WTF { template <typename T> class PassRefPtr; } | |
42 #endif | |
43 | 40 |
44 namespace blink { | 41 namespace blink { |
45 | 42 |
46 class WebDragDataPrivate; | 43 class WebDragDataPrivate; |
47 template <typename T> class WebVector; | 44 template <typename T> class WebVector; |
48 | 45 |
49 // Holds data that may be exchanged through a drag-n-drop operation. It is | 46 // Holds data that may be exchanged through a drag-n-drop operation. It is |
50 // inexpensive to copy a WebDragData object. | 47 // inexpensive to copy a WebDragData object. |
51 class WebDragData { | 48 class WebDragData { |
52 public: | 49 public: |
(...skipping 23 matching lines...) Expand all Loading... | |
76 WebData binaryData; | 73 WebData binaryData; |
77 | 74 |
78 // Title associated with a link when stringType == "text/uri-list". | 75 // Title associated with a link when stringType == "text/uri-list". |
79 // Filename when storageType == StorageTypeBinaryData. | 76 // Filename when storageType == StorageTypeBinaryData. |
80 WebString title; | 77 WebString title; |
81 | 78 |
82 // Only valid when stringType == "text/html". | 79 // Only valid when stringType == "text/html". |
83 WebURL baseURL; | 80 WebURL baseURL; |
84 }; | 81 }; |
85 | 82 |
86 ~WebDragData() { reset(); } | 83 WebDragData() { } |
84 WebDragData(const WebDragData&); | |
85 WebDragData& operator=(const WebDragData&); | |
86 ~WebDragData(); | |
87 | 87 |
88 WebDragData() : m_private(0) { } | 88 bool isNull() const; |
89 WebDragData(const WebDragData& d) : m_private(0) { assign(d); } | |
90 WebDragData& operator=(const WebDragData& d) | |
91 { | |
92 assign(d); | |
93 return *this; | |
94 } | |
95 | 89 |
96 BLINK_EXPORT void initialize(); | 90 BLINK_EXPORT void initialize(); |
97 BLINK_EXPORT void reset(); | 91 BLINK_EXPORT void reset(); |
98 BLINK_EXPORT void assign(const WebDragData&); | 92 BLINK_EXPORT void assign(const WebDragData&); |
99 | 93 |
100 bool isNull() const { return !m_private; } | |
101 | |
102 BLINK_EXPORT WebVector<Item> items() const; | 94 BLINK_EXPORT WebVector<Item> items() const; |
103 BLINK_EXPORT void setItems(const WebVector<Item>&); | 95 BLINK_EXPORT void setItems(const WebVector<Item>&); |
104 BLINK_EXPORT void addItem(const Item&); | 96 BLINK_EXPORT void addItem(const Item&); |
105 | 97 |
106 BLINK_EXPORT WebString filesystemId() const; | 98 BLINK_EXPORT WebString filesystemId() const; |
107 BLINK_EXPORT void setFilesystemId(const WebString&); | 99 BLINK_EXPORT void setFilesystemId(const WebString&); |
108 | 100 |
109 #if BLINK_IMPLEMENTATION | 101 #if BLINK_IMPLEMENTATION |
110 WebDragData(const WTF::PassRefPtr<WebCore::DataObject>&); | 102 WebDragData(const PassRefPtrWillBeRawPtr<WebCore::DataObject>&); |
111 WebDragData& operator=(const WTF::PassRefPtr<WebCore::DataObject>&); | 103 WebDragData& operator=(const PassRefPtrWillBeRawPtr<WebCore::DataObject>&); |
112 operator WTF::PassRefPtr<WebCore::DataObject>() const; | 104 WebCore::DataObject* getValue() const; |
113 #endif | 105 #endif |
114 | 106 |
115 private: | 107 private: |
116 void assign(WebDragDataPrivate*); | |
117 void ensureMutable(); | 108 void ensureMutable(); |
118 WebDragDataPrivate* m_private; | 109 WebPrivatePtr<WebCore::DataObject> m_private; |
119 }; | 110 }; |
120 | 111 |
121 } // namespace blink | 112 } // namespace blink |
122 | 113 |
123 #endif | 114 #endif |
OLD | NEW |