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

Unified Diff: third_party/WebKit/public/web/WebAXObject.h

Issue 1713723002: Implement accessibility support for CSS-transformed iframes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase 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/public/web/WebAXObject.h
diff --git a/third_party/WebKit/public/web/WebAXObject.h b/third_party/WebKit/public/web/WebAXObject.h
index f0051c1678a9b4c77d1a3e1cba807c77dfe6a794..a425007d38977f0ef0200db0a590c572688f764a 100644
--- a/third_party/WebKit/public/web/WebAXObject.h
+++ b/third_party/WebKit/public/web/WebAXObject.h
@@ -42,6 +42,8 @@
namespace WTF { template <typename T> class PassRefPtr; }
#endif
+class SkMatrix44;
+
namespace blink {
class AXObject;
@@ -281,6 +283,9 @@ public:
BLINK_EXPORT WebPoint maximumScrollOffset() const;
BLINK_EXPORT void setScrollOffset(const WebPoint&) const;
+ // Transformation relative to the local frame root.
+ BLINK_EXPORT SkMatrix44 localFrameRootTransform() const;
+
// Make this object visible by scrolling as many nested scrollable views as needed.
BLINK_EXPORT void scrollToMakeVisible() const;
// Same, but if the whole object can't be made visible, try for this subrect, in local coordinates.

Powered by Google App Engine
This is Rietveld 408576698