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

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 b591739a1cb33a8f9ae5617a9855593d2da4b6c5..9af1b22288861ab1a34f9ea9937221d241bbbd8c 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;
@@ -282,6 +284,9 @@ public:
BLINK_EXPORT WebPoint maximumScrollOffset() const;
BLINK_EXPORT void setScrollOffset(const WebPoint&) const;
+ // Transformation relative to the parent frame, if local (otherwise returns identity).
+ BLINK_EXPORT SkMatrix44 transformFromLocalParentFrame() 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