| Index: third_party/WebKit/Source/core/html/forms/HiddenInputType.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/forms/HiddenInputType.cpp b/third_party/WebKit/Source/core/html/forms/HiddenInputType.cpp
|
| index b81b5cd1073901d2e76c16a776ac19e64489086b..f56f766303d9345af25679403e9a06681261332a 100644
|
| --- a/third_party/WebKit/Source/core/html/forms/HiddenInputType.cpp
|
| +++ b/third_party/WebKit/Source/core/html/forms/HiddenInputType.cpp
|
| @@ -42,9 +42,9 @@ namespace blink {
|
|
|
| using namespace HTMLNames;
|
|
|
| -PassRefPtrWillBeRawPtr<InputType> HiddenInputType::create(HTMLInputElement& element)
|
| +RawPtr<InputType> HiddenInputType::create(HTMLInputElement& element)
|
| {
|
| - return adoptRefWillBeNoop(new HiddenInputType(element));
|
| + return new HiddenInputType(element);
|
| }
|
|
|
| const AtomicString& HiddenInputType::formControlType() const
|
|
|