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

Unified Diff: Source/WebCore/platform/gtk/ClipboardGtk.cpp

Issue 11370004: Revert 123677 - Merge 123495 - Files from drag and file <input> should use getMIMETypeForExtension … (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1180/
Patch Set: Created 8 years, 1 month 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: Source/WebCore/platform/gtk/ClipboardGtk.cpp
===================================================================
--- Source/WebCore/platform/gtk/ClipboardGtk.cpp (revision 133651)
+++ Source/WebCore/platform/gtk/ClipboardGtk.cpp (working copy)
@@ -224,7 +224,7 @@
RefPtr<FileList> fileList = FileList::create();
const Vector<String>& filenames = m_dataObject->filenames();
for (size_t i = 0; i < filenames.size(); i++)
- fileList->append(File::create(filenames[i], File::AllContentTypes));
+ fileList->append(File::create(filenames[i]));
return fileList.release();
}
« no previous file with comments | « Source/WebCore/platform/chromium/ChromiumDataObject.cpp ('k') | Source/WebCore/platform/mac/ClipboardMac.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698