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

Unified Diff: content/renderer/drop_data_builder.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/public/common/drop_data.h ('k') | content/renderer/render_widget.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/drop_data_builder.cc
diff --git a/content/renderer/drop_data_builder.cc b/content/renderer/drop_data_builder.cc
index e10d8d798788b9e2289cd674d95d38aa2e70eeb1..3dc64de3a3e89739d77b76d0d02f6ce1a7fab76c 100644
--- a/content/renderer/drop_data_builder.cc
+++ b/content/renderer/drop_data_builder.cc
@@ -69,6 +69,7 @@ DropData DropDataBuilder::Build(const WebDragData& drag_data) {
DropData::FileSystemFileInfo info;
info.url = item.fileSystemURL;
info.size = item.fileSystemFileSize;
+ info.filesystem_id = item.fileSystemId.ascii();
result.file_system_files.push_back(info);
break;
}
« no previous file with comments | « content/public/common/drop_data.h ('k') | content/renderer/render_widget.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698