Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(120)

Unified Diff: third_party/WebKit/Source/web/WebAXObject.cpp

Issue 2863703003: A11y: Rename AXSupportedAction to AXDefaultActionVerb. (Closed)
Patch Set: Rebase. Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 {

Powered by Google App Engine
This is Rietveld 408576698