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

Unified Diff: Source/core/dom/DOMPoint.cpp

Issue 404803002: Implement DOMPoint of geometry interfaces. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebase Created 6 years, 5 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 | « Source/core/dom/DOMPoint.h ('k') | Source/core/dom/DOMPoint.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/DOMPoint.cpp
diff --git a/Source/core/dom/DOMPoint.cpp b/Source/core/dom/DOMPoint.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..49058ed7e465b9ecc5c4a99f170ccff2fe62fe2f
--- /dev/null
+++ b/Source/core/dom/DOMPoint.cpp
@@ -0,0 +1,39 @@
+// 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.
+
+#include "config.h"
+#include "core/dom/DOMPoint.h"
+
+namespace WebCore {
+
+DOMPoint* DOMPoint::create(const Dictionary& point)
+{
+ double x = 0;
+ double y = 0;
+ double z = 0;
+ double w = 0;
+
+ if (!DictionaryHelper::get(point, "x", x))
+ x = 0;
+ if (!DictionaryHelper::get(point, "y", y))
+ y = 0;
+ if (!DictionaryHelper::get(point, "z", z))
+ z = 0;
+ if (!DictionaryHelper::get(point, "w", w))
+ w = 1;
+
+ return new DOMPoint(x, y, z, w);
+}
+
+DOMPoint* DOMPoint::create(double x, double y, double z, double w)
+{
+ return new DOMPoint(x, y, z, w);
+}
+
+DOMPoint::DOMPoint(double x, double y, double z, double w)
+ : DOMPointReadOnly(x, y, z, w)
+{
+}
+
+} // namespace WebCore
« no previous file with comments | « Source/core/dom/DOMPoint.h ('k') | Source/core/dom/DOMPoint.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698