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

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

Issue 2518183002: Moved action verbs out of Blink. (Closed)
Patch Set: Created 4 years, 1 month 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/AssertMatchingEnums.cpp
diff --git a/third_party/WebKit/Source/web/AssertMatchingEnums.cpp b/third_party/WebKit/Source/web/AssertMatchingEnums.cpp
index 190f6783254d439b3638cefe107d10e272e35ada..d3a99eb2655dbbb90798e0fa2014ee8cfad03de0 100644
--- a/third_party/WebKit/Source/web/AssertMatchingEnums.cpp
+++ b/third_party/WebKit/Source/web/AssertMatchingEnums.cpp
@@ -334,6 +334,16 @@ STATIC_ASSERT_ENUM(WebAXStateSelected, AXSelectedState);
STATIC_ASSERT_ENUM(WebAXStateVertical, AXVerticalState);
STATIC_ASSERT_ENUM(WebAXStateVisited, AXVisitedState);
+STATIC_ASSERT_ENUM(WebAXSupportedAction::NONE, AXSupportedAction::NONE);
+STATIC_ASSERT_ENUM(WebAXSupportedAction::ACTIVATE, AXSupportedAction::ACTIVATE);
+STATIC_ASSERT_ENUM(WebAXSupportedAction::CHECK, AXSupportedAction::CHECK);
+STATIC_ASSERT_ENUM(WebAXSupportedAction::CLICK, AXSupportedAction::CLICK);
+STATIC_ASSERT_ENUM(WebAXSupportedAction::JUMP, AXSupportedAction::JUMP);
+STATIC_ASSERT_ENUM(WebAXSupportedAction::OPEN, AXSupportedAction::OPEN);
+STATIC_ASSERT_ENUM(WebAXSupportedAction::PRESS, AXSupportedAction::PRESS);
+STATIC_ASSERT_ENUM(WebAXSupportedAction::SELECT, AXSupportedAction::SELECT);
+STATIC_ASSERT_ENUM(WebAXSupportedAction::UNCHECK, AXSupportedAction::UNCHECK);
+
STATIC_ASSERT_ENUM(WebAXTextDirectionLR, AccessibilityTextDirectionLTR);
STATIC_ASSERT_ENUM(WebAXTextDirectionRL, AccessibilityTextDirectionRTL);
STATIC_ASSERT_ENUM(WebAXTextDirectionTB, AccessibilityTextDirectionTTB);

Powered by Google App Engine
This is Rietveld 408576698