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

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

Issue 1536493002: Working proof of concept of select to speak (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Drag across multiple objects Created 5 years 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 c7ffe9a1d4d89965d44e7d631c4da70bd2c07d0b..2c49fbdcf288d2954ea2fd057808da5dea7c47de 100644
--- a/third_party/WebKit/Source/core/dom/AXObjectCache.h
+++ b/third_party/WebKit/Source/core/dom/AXObjectCache.h
@@ -72,6 +72,11 @@ public:
AXMenuListItemSelected,
AXMenuListItemUnselected,
AXMenuListValueChanged,
+ AXMouseEntered,
+ AXMouseExited,
+ AXMouseMoved,
+ AXMousePressed,
+ AXMouseReleased,
AXRowCollapsed,
AXRowCountChanged,
AXRowExpanded,
@@ -137,7 +142,11 @@ public:
virtual const AtomicString& computedRoleForNode(Node*) = 0;
virtual String computedNameForNode(Node*) = 0;
- virtual void onTouchAccessibilityHover(const IntPoint&) = 0;
+ virtual void onAccessibilityMouseDown(const IntPoint&) = 0;
+ virtual void onAccessibilityMouseUp(const IntPoint&) = 0;
+ virtual void onAccessibilityMouseMove(const IntPoint&) = 0;
+ virtual void onAccessibilityMouseEnter(const IntPoint&) = 0;
+ virtual void onAccessibilityMouseLeave(const IntPoint&) = 0;
typedef AXObjectCache* (*AXObjectCacheCreateFunction)(Document&);
static void init(AXObjectCacheCreateFunction);

Powered by Google App Engine
This is Rietveld 408576698