| Index: third_party/WebKit/Source/core/dom/ResizeObserverEntry.cpp
|
| diff --git a/third_party/WebKit/Source/core/dom/ResizeObserverEntry.cpp b/third_party/WebKit/Source/core/dom/ResizeObserverEntry.cpp
|
| index 15b6554826e868c30a14d5546fe4c05f4bea6c9b..3f89d62dae9a7cb017825d164f3f9166937d0239 100644
|
| --- a/third_party/WebKit/Source/core/dom/ResizeObserverEntry.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/ResizeObserverEntry.cpp
|
| @@ -4,17 +4,17 @@
|
|
|
| #include "core/dom/ResizeObserverEntry.h"
|
|
|
| -#include "core/dom/ClientRect.h"
|
| #include "core/dom/Element.h"
|
| #include "core/dom/ResizeObservation.h"
|
| +#include "core/geometry/DOMRect.h"
|
|
|
| namespace blink {
|
|
|
| ResizeObserverEntry::ResizeObserverEntry(Element* target,
|
| const LayoutRect& content_rect)
|
| : target_(target) {
|
| - content_rect_ = ClientRect::Create(FloatRect(
|
| - FloatPoint(content_rect.Location()), FloatSize(content_rect.Size())));
|
| + content_rect_ = DOMRect::Create(FloatRect(FloatPoint(content_rect.Location()),
|
| + FloatSize(content_rect.Size())));
|
| }
|
|
|
| DEFINE_TRACE(ResizeObserverEntry) {
|
|
|