| Index: third_party/WebKit/Source/core/geometry/DOMRect.cpp
|
| diff --git a/third_party/WebKit/Source/core/geometry/DOMRect.cpp b/third_party/WebKit/Source/core/geometry/DOMRect.cpp
|
| deleted file mode 100644
|
| index 70595ee558249b1e3858b6ed63a830440dc1d285..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/Source/core/geometry/DOMRect.cpp
|
| +++ /dev/null
|
| @@ -1,22 +0,0 @@
|
| -// Copyright 2014 The Chromium Authors. All rights reserved.
|
| -// Use of this source code is governed by a BSD-style license that can be
|
| -// found in the LICENSE file.
|
| -
|
| -#include "core/geometry/DOMRect.h"
|
| -
|
| -#include "core/geometry/DOMRectInit.h"
|
| -
|
| -namespace blink {
|
| -
|
| -DOMRect* DOMRect::create(double x, double y, double width, double height) {
|
| - return new DOMRect(x, y, width, height);
|
| -}
|
| -
|
| -DOMRect* DOMRect::fromRect(const DOMRectInit& other) {
|
| - return new DOMRect(other.x(), other.y(), other.width(), other.height());
|
| -}
|
| -
|
| -DOMRect::DOMRect(double x, double y, double width, double height)
|
| - : DOMRectReadOnly(x, y, width, height) {}
|
| -
|
| -} // namespace blink
|
|
|