| Index: third_party/WebKit/Source/web/WebViewImpl.cpp
|
| diff --git a/third_party/WebKit/Source/web/WebViewImpl.cpp b/third_party/WebKit/Source/web/WebViewImpl.cpp
|
| index 00c8ca2d67c0f489f10c7ad4862100d0f336bb41..2120da4ad8293c86ab7ca230baa332796e8d65da 100644
|
| --- a/third_party/WebKit/Source/web/WebViewImpl.cpp
|
| +++ b/third_party/WebKit/Source/web/WebViewImpl.cpp
|
| @@ -1392,7 +1392,7 @@ static Node* findCursorDefiningAncestor(Node* node, LocalFrame* frame) {
|
| while (node) {
|
| if (node->layoutObject()) {
|
| ECursor cursor = node->layoutObject()->style()->cursor();
|
| - if (cursor != ECursor::Auto ||
|
| + if (cursor != ECursor::kAuto ||
|
| frame->eventHandler().useHandCursor(node, node->isLink()))
|
| break;
|
| }
|
| @@ -1407,8 +1407,8 @@ static bool showsHandCursor(Node* node, LocalFrame* frame) {
|
| return false;
|
|
|
| ECursor cursor = node->layoutObject()->style()->cursor();
|
| - return cursor == ECursor::Pointer ||
|
| - (cursor == ECursor::Auto &&
|
| + return cursor == ECursor::kPointer ||
|
| + (cursor == ECursor::kAuto &&
|
| frame->eventHandler().useHandCursor(node, node->isLink()));
|
| }
|
|
|
|
|