| Index: third_party/WebKit/Source/core/html/HTMLAreaElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLAreaElement.cpp b/third_party/WebKit/Source/core/html/HTMLAreaElement.cpp
|
| index ba005351c4995c4e3d09965c2c1aefc2826a07b5..473710c19cdc80d1a0b768de36ded39f9ac6ac1f 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLAreaElement.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLAreaElement.cpp
|
| @@ -203,11 +203,12 @@ bool HTMLAreaElement::LayoutObjectIsFocusable() const {
|
| return SupportsFocus() && Element::tabIndex() >= 0;
|
| }
|
|
|
| -void HTMLAreaElement::SetFocused(bool should_be_focused) {
|
| +void HTMLAreaElement::SetFocused(bool should_be_focused,
|
| + WebFocusType focus_type) {
|
| if (IsFocused() == should_be_focused)
|
| return;
|
|
|
| - HTMLAnchorElement::SetFocused(should_be_focused);
|
| + HTMLAnchorElement::SetFocused(should_be_focused, focus_type);
|
|
|
| HTMLImageElement* image_element = this->ImageElement();
|
| if (!image_element)
|
|
|