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

Unified Diff: third_party/WebKit/Source/modules/accessibility/AXObjectCacheImpl.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/modules/accessibility/AXObjectCacheImpl.h
diff --git a/third_party/WebKit/Source/modules/accessibility/AXObjectCacheImpl.h b/third_party/WebKit/Source/modules/accessibility/AXObjectCacheImpl.h
index 73ad0f3717570bde4370dea2c85cf9cdd850b28c..d5dd0571f832798adb781bb7815603fd97b21849 100644
--- a/third_party/WebKit/Source/modules/accessibility/AXObjectCacheImpl.h
+++ b/third_party/WebKit/Source/modules/accessibility/AXObjectCacheImpl.h
@@ -107,7 +107,11 @@ public:
const AtomicString& computedRoleForNode(Node*) override;
String computedNameForNode(Node*) override;
- void onTouchAccessibilityHover(const IntPoint&) override;
+ void onAccessibilityMouseDown(const IntPoint&) override;
+ void onAccessibilityMouseUp(const IntPoint&) override;
+ void onAccessibilityMouseMove(const IntPoint&) override;
+ void onAccessibilityMouseEnter(const IntPoint&) override;
+ void onAccessibilityMouseLeave(const IntPoint&) override;
// Returns the root object for the entire document.
AXObject* rootObject();

Powered by Google App Engine
This is Rietveld 408576698