Index: third_party/WebKit/Source/core/html/HTMLAnchorElement.cpp |
diff --git a/third_party/WebKit/Source/core/html/HTMLAnchorElement.cpp b/third_party/WebKit/Source/core/html/HTMLAnchorElement.cpp |
index 4e9e4a4d5458aa722f5c8017882623d2d04d84ac..85ddf1a51c51d91f9ec602da3447a0194e6c5b9c 100644 |
--- a/third_party/WebKit/Source/core/html/HTMLAnchorElement.cpp |
+++ b/third_party/WebKit/Source/core/html/HTMLAnchorElement.cpp |
@@ -64,7 +64,7 @@ private: |
void HTMLAnchorElement::NavigationHintSender::handleEvent(Event* event) |
{ |
- if (event->type() == EventTypeNames::mousedown && event->isMouseEvent() && toMouseEvent(event)->button() == LeftButton) |
+ if (event->type() == EventTypeNames::mousedown && event->isMouseEvent() && toMouseEvent(event)->button() == static_cast<short>(WebPointerProperties::Button::Left)) |
maybeSendNavigationHint(WebNavigationHintType::LinkMouseDown); |
else if (event->type() == EventTypeNames::gesturetapunconfirmed) |
maybeSendNavigationHint(WebNavigationHintType::LinkTapUnconfirmed); |
@@ -455,7 +455,7 @@ bool isEnterKeyKeydownEvent(Event* event) |
bool isLinkClick(Event* event) |
{ |
// Allow detail <= 1 so that synthetic clicks work. They may have detail == 0. |
- return (event->type() == EventTypeNames::click || event->type() == EventTypeNames::auxclick) && (!event->isMouseEvent() || (toMouseEvent(event)->button() != RightButton && toMouseEvent(event)->detail() <= 1)); |
+ return (event->type() == EventTypeNames::click || event->type() == EventTypeNames::auxclick) && (!event->isMouseEvent() || (toMouseEvent(event)->button() != static_cast<short>(WebPointerProperties::Button::Right) && toMouseEvent(event)->detail() <= 1)); |
} |
bool HTMLAnchorElement::willRespondToMouseClickEvents() |