| 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 c0e2205b9ce8bbdf3a20df8119cd9d89aff7919b..9feabfc5ff743dfea8186e0024b12e36aca715be 100644
|
| --- a/third_party/WebKit/Source/web/WebAXObject.cpp
|
| +++ b/third_party/WebKit/Source/web/WebAXObject.cpp
|
| @@ -133,11 +133,11 @@ bool WebAXObject::updateLayoutAndCheckValidity() {
|
| return !isDetached();
|
| }
|
|
|
| -WebString WebAXObject::actionVerb() const {
|
| +WebAXSupportedAction WebAXObject::action() const {
|
| if (isDetached())
|
| - return WebString();
|
| + return WebAXSupportedAction::None;
|
|
|
| - return m_private->actionVerb();
|
| + return static_cast<WebAXSupportedAction>(m_private->action());
|
| }
|
|
|
| bool WebAXObject::canDecrement() const {
|
|
|