Chromium Code Reviews| 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..b41584276eb8871b3f0f6ec460bdc6d1c0d789f4 |
| --- /dev/null |
| +++ b/Source/core/dom/DOMPoint.cpp |
| @@ -0,0 +1,36 @@ |
| +// 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, y, z, w; |
|
haraken
2014/07/21 14:03:55
I'd guess this will cause uninitialized error in s
zino
2014/07/21 15:12:42
Done.
|
| + |
| + 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 |