| Index: third_party/WebKit/Source/web/WebAXObject.cpp
|
| diff --git a/third_party/WebKit/Source/web/WebAXObject.cpp b/third_party/WebKit/Source/web/WebAXObject.cpp
|
| index ff44de7d9d64802a134fadff237de56943976df8..4b254c0c1d1baa3e434193963de6b83d3fb82924 100644
|
| --- a/third_party/WebKit/Source/web/WebAXObject.cpp
|
| +++ b/third_party/WebKit/Source/web/WebAXObject.cpp
|
| @@ -30,6 +30,7 @@
|
|
|
| #include "public/web/WebAXObject.h"
|
|
|
| +#include "SkMatrix44.h"
|
| #include "core/HTMLNames.h"
|
| #include "core/css/CSSPrimitiveValueMappings.h"
|
| #include "core/dom/Document.h"
|
| @@ -1498,6 +1499,14 @@ void WebAXObject::scrollToGlobalPoint(const WebPoint& point) const
|
| m_private->scrollToGlobalPoint(point);
|
| }
|
|
|
| +SkMatrix44 WebAXObject::localFrameRootTransform() const
|
| +{
|
| + if (isDetached())
|
| + return SkMatrix44();
|
| +
|
| + return m_private->localFrameRootTransform();
|
| +}
|
| +
|
| WebAXObject::WebAXObject(AXObject* object)
|
| : m_private(object)
|
| {
|
|
|