| 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 803f19f442b5eaa15b5948ca9cc8380d95c33bda..b2082cd383b44a735b037a7598a7e245463bdce0 100644
|
| --- a/third_party/WebKit/Source/web/WebAXObject.cpp
|
| +++ b/third_party/WebKit/Source/web/WebAXObject.cpp
|
| @@ -169,11 +169,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 {
|
|
|