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

Unified Diff: content/renderer/render_widget.cc

Issue 2565283002: Fix webkitGetEntry for non-native files. (Closed)
Patch Set: Rebased. Created 4 years 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 | « content/renderer/drop_data_builder.cc ('k') | third_party/WebKit/Source/core/clipboard/DataObject.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/render_widget.cc
diff --git a/content/renderer/render_widget.cc b/content/renderer/render_widget.cc
index e47f7f661395de1b053f167b9ce502f19915730a..f25fa82c1ad78cffa9a3fd4caeadb67117cd1a80 100644
--- a/content/renderer/render_widget.cc
+++ b/content/renderer/render_widget.cc
@@ -294,6 +294,7 @@ WebDragData DropDataToWebDragData(const DropData& drop_data) {
item.storageType = WebDragData::Item::StorageTypeFileSystemFile;
item.fileSystemURL = it->url;
item.fileSystemFileSize = it->size;
+ item.fileSystemId = blink::WebString::fromASCII(it->filesystem_id);
item_list.push_back(item);
}
« no previous file with comments | « content/renderer/drop_data_builder.cc ('k') | third_party/WebKit/Source/core/clipboard/DataObject.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698