Index: Source/core/dom/DOMRect.h |
diff --git a/Source/core/dom/DOMRect.h b/Source/core/dom/DOMRect.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..af52d20395df9f594c3cb811bd68dd0e3c6e4b66 |
--- /dev/null |
+++ b/Source/core/dom/DOMRect.h |
@@ -0,0 +1,28 @@ |
+// 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/dom/DOMRectReadOnly.h" |
+ |
+namespace WebCore { |
+ |
+class DOMRect FINAL : public DOMRectReadOnly { |
+public: |
+ static DOMRect* create(double x = 0, double y = 0, double width = 0, double height = 0); |
+ |
+ 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 WebCore |
+ |
+#endif |