Index: third_party/WebKit/Source/core/geometry/DOMRect.h |
diff --git a/third_party/WebKit/Source/core/geometry/DOMRect.h b/third_party/WebKit/Source/core/geometry/DOMRect.h |
deleted file mode 100644 |
index b5401e26237e10cad867fc8a0678b8f276ab9007..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/Source/core/geometry/DOMRect.h |
+++ /dev/null |
@@ -1,38 +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. |
- |
-#ifndef DOMRect_h |
-#define DOMRect_h |
- |
-#include "bindings/core/v8/Dictionary.h" |
-#include "core/CoreExport.h" |
-#include "core/geometry/DOMRectReadOnly.h" |
- |
-namespace blink { |
- |
-class DOMRect; |
-class DOMRectInit; |
- |
-class CORE_EXPORT DOMRect final : public DOMRectReadOnly { |
- DEFINE_WRAPPERTYPEINFO(); |
- |
- public: |
- static DOMRect* create(double x = 0, |
- double y = 0, |
- double width = 0, |
- double height = 0); |
- static DOMRect* fromRect(const DOMRectInit&); |
- |
- void setX(double x) { m_x = x; } |
- void setY(double y) { m_y = y; } |
- void setWidth(double width) { m_width = width; } |
- void setHeight(double height) { m_height = height; } |
- |
- protected: |
- DOMRect(double x, double y, double z, double w); |
-}; |
- |
-} // namespace blink |
- |
-#endif |