| Index: third_party/WebKit/Source/core/testing/Internals.cpp
|
| diff --git a/third_party/WebKit/Source/core/testing/Internals.cpp b/third_party/WebKit/Source/core/testing/Internals.cpp
|
| index 738cb42c4369aa551c5fe1d2f715f1f6c5974fd7..28863b32bc34f0f8a5f5e91f26cb4decf88bcba5 100644
|
| --- a/third_party/WebKit/Source/core/testing/Internals.cpp
|
| +++ b/third_party/WebKit/Source/core/testing/Internals.cpp
|
| @@ -2764,8 +2764,9 @@ DEFINE_TRACE(Internals) {
|
| ContextLifecycleObserver::trace(visitor);
|
| }
|
|
|
| -void Internals::setValueForUser(Element* element, const String& value) {
|
| - toHTMLInputElement(element)->setValueForUser(value);
|
| +void Internals::setValueForUser(HTMLInputElement* element,
|
| + const String& value) {
|
| + element->setValueForUser(value);
|
| }
|
|
|
| String Internals::textSurroundingNode(Node* node,
|
|
|