| Index: third_party/WebKit/Source/core/html/TextControlElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/TextControlElement.cpp b/third_party/WebKit/Source/core/html/TextControlElement.cpp
|
| index bfc92d1c5a04c91fa2bfdd656e5935b3db460cda..c29d5b2ae9770541a3e07fcdfdda337f61780a81 100644
|
| --- a/third_party/WebKit/Source/core/html/TextControlElement.cpp
|
| +++ b/third_party/WebKit/Source/core/html/TextControlElement.cpp
|
| @@ -212,8 +212,11 @@ void TextControlElement::ClearValueBeforeFirstUserEdit() {
|
| value_before_first_user_edit_ = String();
|
| }
|
|
|
| -void TextControlElement::SetFocused(bool flag, WebFocusType focus_type) {
|
| - HTMLFormControlElementWithState::SetFocused(flag, focus_type);
|
| +void TextControlElement::SetFocused(bool flag,
|
| + WebFocusType focus_type,
|
| + Node* common_ancestor) {
|
| + HTMLFormControlElementWithState::SetFocused(flag, focus_type,
|
| + common_ancestor);
|
|
|
| if (!flag)
|
| DispatchFormControlChangeEvent();
|
|
|