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

Unified Diff: Source/core/clipboard/Clipboard.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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/clipboard/Clipboard.h ('k') | Source/core/clipboard/Clipboard.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/clipboard/Clipboard.cpp
diff --git a/Source/core/clipboard/Clipboard.cpp b/Source/core/clipboard/Clipboard.cpp
index 34f9e5c57bdbcba110ebf355233aedc83313dcf5..c3891f66a27baa78139641467bd07965a36bfde5 100644
--- a/Source/core/clipboard/Clipboard.cpp
+++ b/Source/core/clipboard/Clipboard.cpp
@@ -44,6 +44,8 @@
namespace WebCore {
+DEFINE_GC_INFO(Clipboard);
+
// These "conversion" methods are called by both WebCore and WebKit, and never make sense to JS, so we don't
// worry about security for these. They don't allow access to the pasteboard anyway.
static DragOperation dragOpFromIEOp(const String& op)
@@ -107,9 +109,9 @@ static String normalizeType(const String& type, bool* convertToURL = 0)
return cleanType;
}
-PassRefPtr<Clipboard> Clipboard::create(ClipboardType type, ClipboardAccessPolicy policy, PassRefPtr<DataObject> dataObject)
+PassRefPtrWillBeRawPtr<Clipboard> Clipboard::create(ClipboardType type, ClipboardAccessPolicy policy, PassRefPtrWillBeRawPtr<DataObject> dataObject)
{
- return adoptRef(new Clipboard(type, policy , dataObject));
+ return adoptRefWillBeNoop(new Clipboard(type, policy , dataObject));
}
Clipboard::~Clipboard()
@@ -440,7 +442,7 @@ bool Clipboard::hasDropZoneType(const String& keyword)
return false;
}
-PassRefPtr<DataTransferItemList> Clipboard::items()
+PassRefPtrWillBeRawPtr<DataTransferItemList> Clipboard::items()
{
// FIXME: According to the spec, we are supposed to return the same collection of items each
// time. We now return a wrapper that always wraps the *same* set of items, so JS shouldn't be
@@ -448,12 +450,12 @@ PassRefPtr<DataTransferItemList> Clipboard::items()
return DataTransferItemList::create(this, m_dataObject);
}
-PassRefPtr<DataObject> Clipboard::dataObject() const
+PassRefPtrWillBeRawPtr<DataObject> Clipboard::dataObject() const
{
return m_dataObject;
}
-Clipboard::Clipboard(ClipboardType type, ClipboardAccessPolicy policy, PassRefPtr<DataObject> dataObject)
+Clipboard::Clipboard(ClipboardType type, ClipboardAccessPolicy policy, PassRefPtrWillBeRawPtr<DataObject> dataObject)
: m_policy(policy)
, m_dropEffect("uninitialized")
, m_effectAllowed("uninitialized")
@@ -522,4 +524,9 @@ String convertDragOperationToDropZoneOperation(DragOperation operation)
}
}
+void Clipboard::trace(Visitor* visitor)
+{
+ visitor->trace(m_dataObject);
+}
+
} // namespace WebCore
« no previous file with comments | « Source/core/clipboard/Clipboard.h ('k') | Source/core/clipboard/Clipboard.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698