Chromium Code Reviews

Unified Diff: Source/core/clipboard/DataTransferItem.cpp

Issue 176853004: Oilpan: move core/fileapi to oilpan's heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: Source/core/clipboard/DataTransferItem.cpp
diff --git a/Source/core/clipboard/DataTransferItem.cpp b/Source/core/clipboard/DataTransferItem.cpp
index 325d7e42ba7d04a420be7e08701b0c5a0b6a643d..43c1b826a8a8b7f4316360af98fc49b8009c011c 100644
--- a/Source/core/clipboard/DataTransferItem.cpp
+++ b/Source/core/clipboard/DataTransferItem.cpp
@@ -83,7 +83,7 @@ void DataTransferItem::getAsString(ExecutionContext* context, PassOwnPtr<StringC
StringCallback::scheduleCallback(callback, context, m_item->getAsString());
}
-PassRefPtr<Blob> DataTransferItem::getAsFile() const
+PassRefPtrWillBeRawPtr<Blob> DataTransferItem::getAsFile() const
{
if (!m_clipboard->canReadData())
return nullptr;

Powered by Google App Engine