| 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 9d8e9c695a7624d099b3ae1906d29864441b4013..11c13750a267d8295231e285ea4cc67d0e9fe707 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)
|
| {
|
|
|