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

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
« no previous file with comments | « third_party/WebKit/Source/web/AssertMatchingEnums.cpp ('k') | third_party/WebKit/public/web/WebAXEnums.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 {
« no previous file with comments | « third_party/WebKit/Source/web/AssertMatchingEnums.cpp ('k') | third_party/WebKit/public/web/WebAXEnums.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698