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

Unified Diff: third_party/WebKit/Source/core/html/HTMLInputElement.cpp

Issue 2098703003: DevTools: protocol setting files properly handles mimetypes and directories. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: make paths const Created 4 years, 6 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: third_party/WebKit/Source/core/html/HTMLInputElement.cpp
diff --git a/third_party/WebKit/Source/core/html/HTMLInputElement.cpp b/third_party/WebKit/Source/core/html/HTMLInputElement.cpp
index abb28d39af6b814cf3d5e44226af3712041dfb39..99e14fffd9cf022f7686ddecf04d77ffd139d00e 100644
--- a/third_party/WebKit/Source/core/html/HTMLInputElement.cpp
+++ b/third_party/WebKit/Source/core/html/HTMLInputElement.cpp
@@ -1912,4 +1912,10 @@ bool HTMLInputElement::hasFallbackContent() const
{
return m_inputTypeView->hasFallbackContent();
}
+
+void HTMLInputElement::setFilesFromPaths(const Vector<String>& paths)
+{
+ return m_inputType->setFilesFromPaths(paths);
+}
} // namespace blink
+
tkent 2016/06/27 23:10:45 nit: Add a blank line between }s, not at the end o
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLInputElement.h ('k') | third_party/WebKit/Source/core/html/forms/FileInputType.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698