Index: public/platform/WebDragData.h |
diff --git a/public/platform/WebDragData.h b/public/platform/WebDragData.h |
index c89dd9b4ca953ea7e583500a0873e8ca3370ed14..281e4123269ef43241cfa96384d60d98076c9cee 100644 |
--- a/public/platform/WebDragData.h |
+++ b/public/platform/WebDragData.h |
@@ -38,7 +38,6 @@ |
#if BLINK_IMPLEMENTATION |
namespace WebCore { class DataObject; } |
-namespace WTF { template <typename T> class PassRefPtr; } |
#endif |
namespace blink { |
@@ -83,22 +82,17 @@ public: |
WebURL baseURL; |
}; |
- ~WebDragData() { reset(); } |
+ WebDragData() { } |
+ WebDragData(const WebDragData&); |
+ WebDragData& operator=(const WebDragData&); |
+ ~WebDragData(); |
- WebDragData() : m_private(0) { } |
- WebDragData(const WebDragData& d) : m_private(0) { assign(d); } |
- WebDragData& operator=(const WebDragData& d) |
- { |
- assign(d); |
- return *this; |
- } |
+ bool isNull() const; |
BLINK_EXPORT void initialize(); |
BLINK_EXPORT void reset(); |
BLINK_EXPORT void assign(const WebDragData&); |
- bool isNull() const { return !m_private; } |
- |
BLINK_EXPORT WebVector<Item> items() const; |
BLINK_EXPORT void setItems(const WebVector<Item>&); |
BLINK_EXPORT void addItem(const Item&); |
@@ -107,15 +101,16 @@ public: |
BLINK_EXPORT void setFilesystemId(const WebString&); |
#if BLINK_IMPLEMENTATION |
- WebDragData(const WTF::PassRefPtr<WebCore::DataObject>&); |
- WebDragData& operator=(const WTF::PassRefPtr<WebCore::DataObject>&); |
- operator WTF::PassRefPtr<WebCore::DataObject>() const; |
+ WebDragData(const PassRefPtrWillBeRawPtr<WebCore::DataObject>&); |
+ WebDragData& operator=(const PassRefPtrWillBeRawPtr<WebCore::DataObject>&); |
+ WebCore::DataObject* getValue() const; |
#endif |
private: |
- void assign(WebDragDataPrivate*); |
void ensureMutable(); |
- WebDragDataPrivate* m_private; |
+#if BLINK_IMPLEMENTATION |
+ 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
|
+#endif |
}; |
} // namespace blink |