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 20 matching lines...) Expand all Loading... | |
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 | 39 #if BLINK_IMPLEMENTATION |
40 namespace WebCore { class DataObject; } | 40 namespace WebCore { class DataObject; } |
41 namespace WTF { template <typename T> class PassRefPtr; } | |
42 #endif | 41 #endif |
43 | 42 |
44 namespace blink { | 43 namespace blink { |
45 | 44 |
46 class WebDragDataPrivate; | 45 class WebDragDataPrivate; |
47 template <typename T> class WebVector; | 46 template <typename T> class WebVector; |
48 | 47 |
49 // Holds data that may be exchanged through a drag-n-drop operation. It is | 48 // Holds data that may be exchanged through a drag-n-drop operation. It is |
50 // inexpensive to copy a WebDragData object. | 49 // inexpensive to copy a WebDragData object. |
51 class WebDragData { | 50 class WebDragData { |
(...skipping 24 matching lines...) Expand all Loading... | |
76 WebData binaryData; | 75 WebData binaryData; |
77 | 76 |
78 // Title associated with a link when stringType == "text/uri-list". | 77 // Title associated with a link when stringType == "text/uri-list". |
79 // Filename when storageType == StorageTypeBinaryData. | 78 // Filename when storageType == StorageTypeBinaryData. |
80 WebString title; | 79 WebString title; |
81 | 80 |
82 // Only valid when stringType == "text/html". | 81 // Only valid when stringType == "text/html". |
83 WebURL baseURL; | 82 WebURL baseURL; |
84 }; | 83 }; |
85 | 84 |
86 ~WebDragData() { reset(); } | 85 WebDragData() { } |
86 WebDragData(const WebDragData&); | |
87 WebDragData& operator=(const WebDragData&); | |
88 ~WebDragData(); | |
87 | 89 |
88 WebDragData() : m_private(0) { } | 90 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 | 91 |
96 BLINK_EXPORT void initialize(); | 92 BLINK_EXPORT void initialize(); |
97 BLINK_EXPORT void reset(); | 93 BLINK_EXPORT void reset(); |
98 BLINK_EXPORT void assign(const WebDragData&); | 94 BLINK_EXPORT void assign(const WebDragData&); |
99 | 95 |
100 bool isNull() const { return !m_private; } | |
101 | |
102 BLINK_EXPORT WebVector<Item> items() const; | 96 BLINK_EXPORT WebVector<Item> items() const; |
103 BLINK_EXPORT void setItems(const WebVector<Item>&); | 97 BLINK_EXPORT void setItems(const WebVector<Item>&); |
104 BLINK_EXPORT void addItem(const Item&); | 98 BLINK_EXPORT void addItem(const Item&); |
105 | 99 |
106 BLINK_EXPORT WebString filesystemId() const; | 100 BLINK_EXPORT WebString filesystemId() const; |
107 BLINK_EXPORT void setFilesystemId(const WebString&); | 101 BLINK_EXPORT void setFilesystemId(const WebString&); |
108 | 102 |
109 #if BLINK_IMPLEMENTATION | 103 #if BLINK_IMPLEMENTATION |
110 WebDragData(const WTF::PassRefPtr<WebCore::DataObject>&); | 104 WebDragData(const PassRefPtrWillBeRawPtr<WebCore::DataObject>&); |
111 WebDragData& operator=(const WTF::PassRefPtr<WebCore::DataObject>&); | 105 WebDragData& operator=(const PassRefPtrWillBeRawPtr<WebCore::DataObject>&); |
112 operator WTF::PassRefPtr<WebCore::DataObject>() const; | 106 WebCore::DataObject* getValue() const; |
113 #endif | 107 #endif |
114 | 108 |
115 private: | 109 private: |
116 void assign(WebDragDataPrivate*); | |
117 void ensureMutable(); | 110 void ensureMutable(); |
118 WebDragDataPrivate* m_private; | 111 #if BLINK_IMPLEMENTATION |
112 WebPrivatePtr<WebCore::DataObject> m_private; | |
Mads Ager (chromium)
2014/02/19 10:47:13
I don't think this will work. Isn't m_private need
haraken
2014/02/19 10:51:14
You're right. This CL compiles by accident probabl
| |
113 #endif | |
119 }; | 114 }; |
120 | 115 |
121 } // namespace blink | 116 } // namespace blink |
122 | 117 |
123 #endif | 118 #endif |
OLD | NEW |