| Index: third_party/WebKit/Source/web/tests/TouchActionTest.cpp
|
| diff --git a/third_party/WebKit/Source/web/tests/TouchActionTest.cpp b/third_party/WebKit/Source/web/tests/TouchActionTest.cpp
|
| index e8dce12a5af2493ae9fee67b6b56bea59bda8b24..7e9a0a3c4a311c6ad3b8c15a322d8b7caaf25d27 100644
|
| --- a/third_party/WebKit/Source/web/tests/TouchActionTest.cpp
|
| +++ b/third_party/WebKit/Source/web/tests/TouchActionTest.cpp
|
| @@ -28,7 +28,6 @@
|
| * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
| */
|
|
|
| -#include "core/dom/ClientRect.h"
|
| #include "core/dom/ClientRectList.h"
|
| #include "core/dom/Document.h"
|
| #include "core/dom/Element.h"
|
| @@ -38,6 +37,7 @@
|
| #include "core/frame/FrameTestHelpers.h"
|
| #include "core/frame/LocalFrame.h"
|
| #include "core/frame/LocalFrameView.h"
|
| +#include "core/geometry/DOMRect.h"
|
| #include "core/html/HTMLIFrameElement.h"
|
| #include "core/input/EventHandler.h"
|
| #include "core/layout/HitTestResult.h"
|
| @@ -267,7 +267,7 @@ void TouchActionTest::RunTestOnTree(
|
| // debugging).
|
| Persistent<ClientRectList> rects = element->getClientRects();
|
| ASSERT_GE(rects->length(), 0u) << failure_context;
|
| - Persistent<ClientRect> r = rects->item(0);
|
| + Persistent<DOMRect> r = rects->item(0);
|
| FloatRect client_float_rect =
|
| FloatRect(r->left(), r->top(), r->width(), r->height());
|
| IntRect client_rect = EnclosedIntRect(client_float_rect);
|
|
|