| 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 b9bb16cbffc7ab0dc7185fe619d1ccbbe35628de..ebdf64a67748476dc0238901696bcd299264d913 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 {
|
|
|