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

Unified Diff: third_party/WebKit/Source/modules/accessibility/AXObject.h

Issue 1713723002: Implement accessibility support for CSS-transformed iframes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Return gfx::Rect from AccessibilityTransformToRootCoordSpace, get rid of ifdefed-out code accidenta… Created 4 years, 9 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/modules/accessibility/AXObject.h
diff --git a/third_party/WebKit/Source/modules/accessibility/AXObject.h b/third_party/WebKit/Source/modules/accessibility/AXObject.h
index 049580036f0489ef0aaa4de581dcccb6f6682cb9..5580d9ee6822ea151506ae614e76d9580f5b0f8e 100644
--- a/third_party/WebKit/Source/modules/accessibility/AXObject.h
+++ b/third_party/WebKit/Source/modules/accessibility/AXObject.h
@@ -39,6 +39,8 @@
#include "wtf/Forward.h"
#include "wtf/Vector.h"
+class SkMatrix44;
+
namespace blink {
class AXObject;
@@ -792,6 +794,9 @@ public:
virtual void markCachedElementRectDirty() const;
virtual IntPoint clickPoint();
+ // Transformation relative to the parent frame, if local (otherwise returns identity).
+ virtual SkMatrix44 transformFromLocalParentFrame() const;
+
// Hit testing.
// Called on the root AX object to return the deepest available element.
virtual AXObject* accessibilityHitTest(const IntPoint&) const { return 0; }

Powered by Google App Engine
This is Rietveld 408576698