| Index: third_party/WebKit/Source/core/html/forms/InputType.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/forms/InputType.cpp b/third_party/WebKit/Source/core/html/forms/InputType.cpp
|
| index 9e01ffd324155908fee3e7b570e24adc11d02d0b..583b28b0d43318fd3ea83687a20eae9fe45495d9 100644
|
| --- a/third_party/WebKit/Source/core/html/forms/InputType.cpp
|
| +++ b/third_party/WebKit/Source/core/html/forms/InputType.cpp
|
| @@ -483,15 +483,12 @@ void InputType::setFiles(FileList*) {}
|
|
|
| void InputType::setFilesFromPaths(const Vector<String>& paths) {}
|
|
|
| -bool InputType::getTypeSpecificValue(String&) {
|
| - return false;
|
| -}
|
| -
|
| -String InputType::fallbackValue() const {
|
| +String InputType::valueInFilenameValueMode() const {
|
| + NOTREACHED();
|
| return String();
|
| }
|
|
|
| -String InputType::defaultValue() const {
|
| +String InputType::defaultLabel() const {
|
| return String();
|
| }
|
|
|
|
|