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

Unified Diff: content/renderer/render_widget.cc

Issue 2582463002: Fix webkitGetEntry for non-native files. (Closed)
Patch Set: . 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 dd3f90689dae6dcef63f57ed459fa37aa112dbb6..fd2e7b22c706e48ca4de74c66cd52cb4a75a7939 100644
--- a/content/renderer/render_widget.cc
+++ b/content/renderer/render_widget.cc
@@ -293,6 +293,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