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

Unified Diff: third_party/WebKit/Source/core/dom/DOMQuad.cpp

Issue 2615653003: [GeometryInterface] Implement DOMQuad and DOMQuadInit. (Closed)
Patch Set: add const keyword Created 3 years, 11 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/DOMQuad.h ('k') | third_party/WebKit/Source/core/dom/DOMQuad.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/dom/DOMQuad.cpp
diff --git a/third_party/WebKit/Source/core/dom/DOMQuad.cpp b/third_party/WebKit/Source/core/dom/DOMQuad.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..21952c05fc4e98398bfe04237ed7844cef614767
--- /dev/null
+++ b/third_party/WebKit/Source/core/dom/DOMQuad.cpp
@@ -0,0 +1,27 @@
+// Copyright 2016 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/dom/DOMQuad.h"
+
+#include "core/dom/DOMPoint.h"
+
+namespace blink {
+
+DOMQuad* DOMQuad::create(const DOMPointInit& p1,
+ const DOMPointInit& p2,
+ const DOMPointInit& p3,
+ const DOMPointInit& p4) {
+ return new DOMQuad(p1, p2, p3, p4);
+}
+
+DOMQuad::DOMQuad(const DOMPointInit& p1,
+ const DOMPointInit& p2,
+ const DOMPointInit& p3,
+ const DOMPointInit& p4)
+ : m_p1(DOMPoint::fromPoint(p1)),
+ m_p2(DOMPoint::fromPoint(p2)),
+ m_p3(DOMPoint::fromPoint(p3)),
+ m_p4(DOMPoint::fromPoint(p4)) {}
+
+} // namespace blink
« no previous file with comments | « third_party/WebKit/Source/core/dom/DOMQuad.h ('k') | third_party/WebKit/Source/core/dom/DOMQuad.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698