Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(164)

Unified Diff: third_party/WebKit/Source/core/dom/DOMRect.h

Issue 2770253003: Revert of Move geometry interface files to geometry directory. (Closed)
Patch Set: Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/WebKit/Source/core/dom/DOMQuadInit.idl ('k') | third_party/WebKit/Source/core/dom/DOMRect.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/dom/DOMRect.h
diff --git a/third_party/WebKit/Source/core/dom/DOMRect.h b/third_party/WebKit/Source/core/dom/DOMRect.h
new file mode 100644
index 0000000000000000000000000000000000000000..b3d66dd098ba8266cecd37f9c2916b8cd6e2f001
--- /dev/null
+++ b/third_party/WebKit/Source/core/dom/DOMRect.h
@@ -0,0 +1,38 @@
+// 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/dom/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
« no previous file with comments | « third_party/WebKit/Source/core/dom/DOMQuadInit.idl ('k') | third_party/WebKit/Source/core/dom/DOMRect.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698