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

Unified Diff: Source/core/clipboard/DataObject.h

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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/clipboard/Clipboard.idl ('k') | Source/core/clipboard/DataObject.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/clipboard/DataObject.h
diff --git a/Source/core/clipboard/DataObject.h b/Source/core/clipboard/DataObject.h
index 7c489f9564069b3b5b8bae393658945a7ec4e577..e2a183284482512bd8d5ecab3ea3b20feb5b5e0a 100644
--- a/Source/core/clipboard/DataObject.h
+++ b/Source/core/clipboard/DataObject.h
@@ -32,6 +32,7 @@
#define DataObject_h
#include "core/clipboard/DataObjectItem.h"
+#include "heap/Handle.h"
#include "platform/PasteMode.h"
#include "platform/Supplementable.h"
#include "wtf/ListHashSet.h"
@@ -49,22 +50,23 @@ class SharedBuffer;
// A data object for holding data that would be in a clipboard or moved
// during a drag-n-drop operation. This is the data that WebCore is aware
// of and is not specific to a platform.
-class DataObject : public RefCounted<DataObject>, public Supplementable<DataObject> {
+class DataObject : public RefCountedWillBeGarbageCollectedFinalized<DataObject>, public Supplementable<DataObject> {
+ DECLARE_GC_INFO;
public:
- static PassRefPtr<DataObject> createFromPasteboard(PasteMode);
- static PassRefPtr<DataObject> create();
+ static PassRefPtrWillBeRawPtr<DataObject> createFromPasteboard(PasteMode);
+ static PassRefPtrWillBeRawPtr<DataObject> create();
- PassRefPtr<DataObject> copy() const;
+ PassRefPtrWillBeRawPtr<DataObject> copy() const;
// DataTransferItemList support.
size_t length() const;
- PassRefPtr<DataObjectItem> item(unsigned long index);
+ PassRefPtrWillBeRawPtr<DataObjectItem> item(unsigned long index);
// FIXME: Implement V8DataTransferItemList::indexedPropertyDeleter to get this called.
void deleteItem(unsigned long index);
void clearAll();
// Returns null if an item already exists with the provided type.
- PassRefPtr<DataObjectItem> add(const String& data, const String& type);
- PassRefPtr<DataObjectItem> add(PassRefPtr<File>);
+ PassRefPtrWillBeRawPtr<DataObjectItem> add(const String& data, const String& type);
+ PassRefPtrWillBeRawPtr<DataObjectItem> add(PassRefPtr<File>);
// WebCore helpers.
void clearData(const String& type);
@@ -90,15 +92,18 @@ public:
int modifierKeyState() const { return m_modifierKeyState; }
void setModifierKeyState(int modifierKeyState) { m_modifierKeyState = modifierKeyState; }
+ // FIXME: oilpan: This trace() has to trace Supplementable.
+ void trace(Visitor*);
+
private:
DataObject();
explicit DataObject(const DataObject&);
- PassRefPtr<DataObjectItem> findStringItem(const String& type) const;
- bool internalAddStringItem(PassRefPtr<DataObjectItem>);
- void internalAddFileItem(PassRefPtr<DataObjectItem>);
+ PassRefPtrWillBeRawPtr<DataObjectItem> findStringItem(const String& type) const;
+ bool internalAddStringItem(PassRefPtrWillBeRawPtr<DataObjectItem>);
+ void internalAddFileItem(PassRefPtrWillBeRawPtr<DataObjectItem>);
- Vector<RefPtr<DataObjectItem> > m_itemList;
+ WillBeHeapVector<RefPtrWillBeMember<DataObjectItem> > m_itemList;
// State of Shift/Ctrl/Alt/Meta keys.
int m_modifierKeyState;
« no previous file with comments | « Source/core/clipboard/Clipboard.idl ('k') | Source/core/clipboard/DataObject.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698