| Index: third_party/WebKit/Source/core/html/HTMLFormControlElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLFormControlElement.cpp b/third_party/WebKit/Source/core/html/HTMLFormControlElement.cpp
|
| index 137234d96a52e2e8d90222a34aa222edafcdafc8..fdbe2cb92558dd4df9696321d76e20450e06b0ae 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLFormControlElement.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLFormControlElement.cpp
|
| @@ -84,7 +84,7 @@ void HTMLFormControlElement::setFormAction(const AtomicString& value) {
|
| String HTMLFormControlElement::formEnctype() const {
|
| const AtomicString& formEnctypeAttr = fastGetAttribute(formenctypeAttr);
|
| if (formEnctypeAttr.isNull())
|
| - return emptyString();
|
| + return emptyString;
|
| return FormSubmission::Attributes::parseEncodingType(formEnctypeAttr);
|
| }
|
|
|
| @@ -95,7 +95,7 @@ void HTMLFormControlElement::setFormEnctype(const AtomicString& value) {
|
| String HTMLFormControlElement::formMethod() const {
|
| const AtomicString& formMethodAttr = fastGetAttribute(formmethodAttr);
|
| if (formMethodAttr.isNull())
|
| - return emptyString();
|
| + return emptyString;
|
| return FormSubmission::Attributes::methodString(
|
| FormSubmission::Attributes::parseMethodType(formMethodAttr));
|
| }
|
|
|