| Index: third_party/WebKit/Source/core/geometry/DOMRectReadOnly.cpp
|
| diff --git a/third_party/WebKit/Source/core/dom/DOMRectReadOnly.cpp b/third_party/WebKit/Source/core/geometry/DOMRectReadOnly.cpp
|
| similarity index 91%
|
| rename from third_party/WebKit/Source/core/dom/DOMRectReadOnly.cpp
|
| rename to third_party/WebKit/Source/core/geometry/DOMRectReadOnly.cpp
|
| index 6b6e5154c45cc9fcfd9cddba2b5ff6c5ec36828c..757181b43c1cd6e6563ec1a947f8a36b7aa0db86 100644
|
| --- a/third_party/WebKit/Source/core/dom/DOMRectReadOnly.cpp
|
| +++ b/third_party/WebKit/Source/core/geometry/DOMRectReadOnly.cpp
|
| @@ -2,11 +2,11 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#include "core/dom/DOMRectReadOnly.h"
|
| +#include "core/geometry/DOMRectReadOnly.h"
|
|
|
| #include "bindings/core/v8/ScriptValue.h"
|
| #include "bindings/core/v8/V8ObjectBuilder.h"
|
| -#include "core/dom/DOMRectInit.h"
|
| +#include "core/geometry/DOMRectInit.h"
|
|
|
| namespace blink {
|
|
|
| @@ -31,7 +31,8 @@ ScriptValue DOMRectReadOnly::toJSONForBinding(ScriptState* scriptState) const {
|
| }
|
|
|
| DOMRectReadOnly* DOMRectReadOnly::fromRect(const DOMRectInit& other) {
|
| - return new DOMRectReadOnly(other.x(), other.y(), other.width(), other.height());
|
| + return new DOMRectReadOnly(other.x(), other.y(), other.width(),
|
| + other.height());
|
| }
|
|
|
| DOMRectReadOnly::DOMRectReadOnly(double x,
|
|
|