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

Unified Diff: content/public/common/drop_data.cc

Issue 242643004: Support drag and drop of files with filesystem: URL (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix SEGV during tests Created 6 years, 8 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
Index: content/public/common/drop_data.cc
diff --git a/content/public/common/drop_data.cc b/content/public/common/drop_data.cc
index 5f9466b39bf33f4f64f7cb80ebe29785db56e719..e5115751338991e5dd136d9c7cbd4af169267189 100644
--- a/content/public/common/drop_data.cc
+++ b/content/public/common/drop_data.cc
@@ -6,6 +6,10 @@
namespace content {
+DropData::FileSystemFileInfo::FileSystemFileInfo() : size(0) {}
+
+DropData::FileSystemFileInfo::~FileSystemFileInfo() {}
+
DropData::DropData()
: did_originate_from_renderer(false),
referrer_policy(blink::WebReferrerPolicyDefault) {}

Powered by Google App Engine
This is Rietveld 408576698