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

Unified Diff: third_party/WebKit/Source/core/dom/AXObjectCache.h

Issue 1375703002: Fire accessibility hover events when the touch exploration flag is set. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Use asserts instead of checks in test Created 5 years, 3 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/core/dom/AXObjectCache.h
diff --git a/third_party/WebKit/Source/core/dom/AXObjectCache.h b/third_party/WebKit/Source/core/dom/AXObjectCache.h
index 79618c4d96bbcce1e53776a340c4b3697faf25f2..973fe8d632eb9de7dd7596c860a85787f8e9e55f 100644
--- a/third_party/WebKit/Source/core/dom/AXObjectCache.h
+++ b/third_party/WebKit/Source/core/dom/AXObjectCache.h
@@ -62,6 +62,7 @@ public:
AXChildrenChanged,
AXFocusedUIElementChanged,
AXHide,
+ AXHover,
AXInvalidStatusChanged,
AXLayoutComplete,
AXLiveRegionChanged,
@@ -135,6 +136,8 @@ public:
virtual const AtomicString& computedRoleForNode(Node*) = 0;
virtual String computedNameForNode(Node*) = 0;
+ virtual void onTouchAccessibilityHover(const IntPoint&) = 0;
+
typedef AXObjectCache* (*AXObjectCacheCreateFunction)(Document&);
static void init(AXObjectCacheCreateFunction);

Powered by Google App Engine
This is Rietveld 408576698