| Index: Source/core/html/HTMLInputElement.cpp
|
| diff --git a/Source/core/html/HTMLInputElement.cpp b/Source/core/html/HTMLInputElement.cpp
|
| index b0d4f5783baec227e3c2b911344a79068cebb827..2cc0992d6323f412fd851ea20a25839227df3a20 100644
|
| --- a/Source/core/html/HTMLInputElement.cpp
|
| +++ b/Source/core/html/HTMLInputElement.cpp
|
| @@ -384,13 +384,13 @@ void HTMLInputElement::endEditing()
|
| frame->host()->chrome().client().didEndEditingOnTextField(*this);
|
| }
|
|
|
| -void HTMLInputElement::handleFocusEvent(Element* oldFocusedElement, FocusType type)
|
| +void HTMLInputElement::handleFocusEvent(Element* oldFocusedElement, WebFocusType type)
|
| {
|
| m_inputTypeView->handleFocusEvent(oldFocusedElement, type);
|
| m_inputType->enableSecureTextInput();
|
| }
|
|
|
| -void HTMLInputElement::dispatchFocusInEvent(const AtomicString& eventType, Element* oldFocusedElement, FocusType type)
|
| +void HTMLInputElement::dispatchFocusInEvent(const AtomicString& eventType, Element* oldFocusedElement, WebFocusType type)
|
| {
|
| if (eventType == EventTypeNames::DOMFocusIn)
|
| m_inputTypeView->handleFocusInEvent(oldFocusedElement, type);
|
|
|