| Index: third_party/WebKit/Source/web/WebAXObject.cpp
|
| diff --git a/third_party/WebKit/Source/web/WebAXObject.cpp b/third_party/WebKit/Source/web/WebAXObject.cpp
|
| index a9efc6c28501394432ba63168b88e75e9681d769..ce3645a1d93448416de2876222a9a0f204dfd0b1 100644
|
| --- a/third_party/WebKit/Source/web/WebAXObject.cpp
|
| +++ b/third_party/WebKit/Source/web/WebAXObject.cpp
|
| @@ -168,11 +168,11 @@ bool WebAXObject::UpdateLayoutAndCheckValidity() {
|
| return !IsDetached();
|
| }
|
|
|
| -WebAXSupportedAction WebAXObject::Action() const {
|
| +WebAXDefaultActionVerb WebAXObject::Action() const {
|
| if (IsDetached())
|
| - return WebAXSupportedAction::kNone;
|
| + return WebAXDefaultActionVerb::kNone;
|
|
|
| - return static_cast<WebAXSupportedAction>(private_->Action());
|
| + return static_cast<WebAXDefaultActionVerb>(private_->Action());
|
| }
|
|
|
| bool WebAXObject::CanDecrement() const {
|
|
|