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

Unified Diff: Source/web/WebDragData.cpp

Issue 176853004: Oilpan: move core/fileapi to oilpan's heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebased 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/web/WebDOMError.cpp ('k') | Source/web/WebIDBDatabaseError.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/WebDragData.cpp
diff --git a/Source/web/WebDragData.cpp b/Source/web/WebDragData.cpp
index 155e7f1720601d6b04f7e722e5d76cbcde04adcf..84f50a3b748ec6b9a65ef4871b7575a66ac69659 100644
--- a/Source/web/WebDragData.cpp
+++ b/Source/web/WebDragData.cpp
@@ -99,7 +99,7 @@ WebVector<WebDragData::Item> WebDragData::items() const
item.binaryData = originalItem->sharedBuffer();
} else if (originalItem->isFilename()) {
item.storageType = Item::StorageTypeFilename;
- RefPtr<WebCore::Blob> blob = originalItem->getAsFile();
+ RefPtrWillBeRawPtr<WebCore::Blob> blob = originalItem->getAsFile();
if (blob->isFile()) {
File* file = toFile(blob.get());
item.filenameData = file->path();
« no previous file with comments | « Source/web/WebDOMError.cpp ('k') | Source/web/WebIDBDatabaseError.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698