Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / Source / core / dom / DOMRect.h
blob46e4a0babc6603f41d4ad38f578991485c1cbeb7
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef DOMRect_h
6 #define DOMRect_h
8 #include "bindings/core/v8/Dictionary.h"
9 #include "core/CoreExport.h"
10 #include "core/dom/DOMRectReadOnly.h"
12 namespace blink {
14 class CORE_EXPORT DOMRect final : public DOMRectReadOnly {
15 DEFINE_WRAPPERTYPEINFO();
16 public:
17 static DOMRect* create(double x = 0, double y = 0, double width = 0, double height = 0);
19 void setX(double x) { m_x = x; }
20 void setY(double y) { m_y = y; }
21 void setWidth(double width) { m_width = width; }
22 void setHeight(double height) { m_height = height; }
24 protected:
25 DOMRect(double x, double y, double z, double w);
28 } // namespace blink
30 #endif