Chromium Code Reviews| 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
|