Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(135)

Side by Side Diff: Source/web/WebDragData.cpp

Issue 169323002: Oilpan: Move core/clipboard/ to oilpan's heap (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 14 matching lines...) Expand all
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 #include "config.h" 31 #include "config.h"
32 32
33 #include "core/clipboard/DataObject.h" 33 #include "core/clipboard/DataObject.h"
34 #include "core/clipboard/DataTransferItem.h" 34 #include "core/clipboard/DataTransferItem.h"
35 #include "heap/Handle.h"
35 #include "modules/filesystem/DraggedIsolatedFileSystem.h" 36 #include "modules/filesystem/DraggedIsolatedFileSystem.h"
36 #include "platform/clipboard/ClipboardMimeTypes.h" 37 #include "platform/clipboard/ClipboardMimeTypes.h"
37 #include "public/platform/WebData.h" 38 #include "public/platform/WebData.h"
38 #include "public/platform/WebDragData.h" 39 #include "public/platform/WebDragData.h"
39 #include "public/platform/WebString.h" 40 #include "public/platform/WebString.h"
40 #include "public/platform/WebURL.h" 41 #include "public/platform/WebURL.h"
41 #include "public/platform/WebVector.h" 42 #include "public/platform/WebVector.h"
42 #include "wtf/HashMap.h" 43 #include "wtf/HashMap.h"
43 #include "wtf/PassRefPtr.h" 44 #include "wtf/PassRefPtr.h"
44 45
45 using namespace WebCore; 46 using namespace WebCore;
46 47
47 namespace blink { 48 namespace blink {
48 49
49 class WebDragDataPrivate : public DataObject { 50 WebDragData::WebDragData(const WebDragData& object)
50 }; 51 {
52 assign(object);
53 }
54
55 WebDragData::~WebDragData()
56 {
57 reset();
58 }
59
60 WebDragData& WebDragData::operator=(const WebDragData& object)
61 {
62 assign(object);
63 return *this;
64 }
65
66 bool WebDragData::isNull() const
67 {
68 return m_private.isNull();
69 }
51 70
52 void WebDragData::initialize() 71 void WebDragData::initialize()
53 { 72 {
54 assign(static_cast<WebDragDataPrivate*>(DataObject::create().leakRef())); 73 m_private = DataObject::create();
55 } 74 }
56 75
57 void WebDragData::reset() 76 void WebDragData::reset()
58 { 77 {
59 assign(0); 78 m_private.reset();
60 } 79 }
61 80
62 void WebDragData::assign(const WebDragData& other) 81 void WebDragData::assign(const WebDragData& other)
63 { 82 {
64 WebDragDataPrivate* p = const_cast<WebDragDataPrivate*>(other.m_private); 83 m_private = other.m_private;
65 if (p) 84 }
66 p->ref(); 85
67 assign(p); 86 WebDragData::WebDragData(const PassRefPtrWillBeRawPtr<WebCore::DataObject>& obje ct)
87 {
88 assign(object);
89 }
90
91 WebDragData& WebDragData::operator=(const PassRefPtrWillBeRawPtr<WebCore::DataOb ject>& object)
92 {
93 assign(object);
94 return *this;
95 }
96
97 DataObject* WebDragData::getValue() const
98 {
99 return m_private.get();
100 }
101
102 void WebDragData::ensureMutable()
103 {
104 ASSERT(!isNull());
68 } 105 }
69 106
70 WebVector<WebDragData::Item> WebDragData::items() const 107 WebVector<WebDragData::Item> WebDragData::items() const
71 { 108 {
72 Vector<Item> itemList; 109 Vector<Item> itemList;
73 for (size_t i = 0; i < m_private->length(); ++i) { 110 for (size_t i = 0; i < m_private->length(); ++i) {
74 DataObjectItem* originalItem = m_private->item(i).get(); 111 DataObjectItem* originalItem = m_private->item(i).get();
75 WebDragData::Item item; 112 WebDragData::Item item;
76 if (originalItem->kind() == DataObjectItem::StringKind) { 113 if (originalItem->kind() == DataObjectItem::StringKind) {
77 item.storageType = Item::StorageTypeString; 114 item.storageType = Item::StorageTypeString;
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 return; 162 return;
126 case Item::StorageTypeBinaryData: 163 case Item::StorageTypeBinaryData:
127 // This should never happen when dragging in. 164 // This should never happen when dragging in.
128 ASSERT_NOT_REACHED(); 165 ASSERT_NOT_REACHED();
129 } 166 }
130 } 167 }
131 168
132 WebString WebDragData::filesystemId() const 169 WebString WebDragData::filesystemId() const
133 { 170 {
134 ASSERT(!isNull()); 171 ASSERT(!isNull());
135 DraggedIsolatedFileSystem* filesystem = DraggedIsolatedFileSystem::from(m_pr ivate); 172 DraggedIsolatedFileSystem* filesystem = DraggedIsolatedFileSystem::from(m_pr ivate.get());
136 if (filesystem) 173 if (filesystem)
137 return filesystem->filesystemId(); 174 return filesystem->filesystemId();
138 return WebString(); 175 return WebString();
139 } 176 }
140 177
141 void WebDragData::setFilesystemId(const WebString& filesystemId) 178 void WebDragData::setFilesystemId(const WebString& filesystemId)
142 { 179 {
143 // The ID is an opaque string, given by and validated by chromium port. 180 // The ID is an opaque string, given by and validated by chromium port.
144 ensureMutable(); 181 ensureMutable();
145 DraggedIsolatedFileSystem::provideTo(m_private, DraggedIsolatedFileSystem::s upplementName(), DraggedIsolatedFileSystem::create(filesystemId)); 182 DraggedIsolatedFileSystem::provideTo(m_private.get(), DraggedIsolatedFileSys tem::supplementName(), DraggedIsolatedFileSystem::create(filesystemId));
146 }
147
148 WebDragData::WebDragData(const WTF::PassRefPtr<WebCore::DataObject>& data)
149 : m_private(static_cast<WebDragDataPrivate*>(data.leakRef()))
150 {
151 }
152
153 WebDragData& WebDragData::operator=(const WTF::PassRefPtr<WebCore::DataObject>& data)
154 {
155 assign(static_cast<WebDragDataPrivate*>(data.leakRef()));
156 return *this;
157 }
158
159 WebDragData::operator WTF::PassRefPtr<WebCore::DataObject>() const
160 {
161 return PassRefPtr<DataObject>(const_cast<WebDragDataPrivate*>(m_private));
162 }
163
164 void WebDragData::assign(WebDragDataPrivate* p)
165 {
166 // p is already ref'd for us by the caller
167 if (m_private)
168 m_private->deref();
169 m_private = p;
170 }
171
172 void WebDragData::ensureMutable()
173 {
174 ASSERT(!isNull());
175 ASSERT(m_private->hasOneRef());
176 } 183 }
177 184
178 } // namespace blink 185 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698