| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "config.h" | 5 #include "config.h" |
| 6 #include "core/dom/DOMPoint.h" | 6 #include "core/dom/DOMPoint.h" |
| 7 | 7 |
| 8 namespace WebCore { | 8 namespace blink { |
| 9 | 9 |
| 10 DOMPoint* DOMPoint::create(const Dictionary& point) | 10 DOMPoint* DOMPoint::create(const Dictionary& point) |
| 11 { | 11 { |
| 12 double x = 0; | 12 double x = 0; |
| 13 double y = 0; | 13 double y = 0; |
| 14 double z = 0; | 14 double z = 0; |
| 15 double w = 0; | 15 double w = 0; |
| 16 | 16 |
| 17 if (!DictionaryHelper::get(point, "x", x)) | 17 if (!DictionaryHelper::get(point, "x", x)) |
| 18 x = 0; | 18 x = 0; |
| (...skipping 10 matching lines...) Expand all Loading... |
| 29 DOMPoint* DOMPoint::create(double x, double y, double z, double w) | 29 DOMPoint* DOMPoint::create(double x, double y, double z, double w) |
| 30 { | 30 { |
| 31 return new DOMPoint(x, y, z, w); | 31 return new DOMPoint(x, y, z, w); |
| 32 } | 32 } |
| 33 | 33 |
| 34 DOMPoint::DOMPoint(double x, double y, double z, double w) | 34 DOMPoint::DOMPoint(double x, double y, double z, double w) |
| 35 : DOMPointReadOnly(x, y, z, w) | 35 : DOMPointReadOnly(x, y, z, w) |
| 36 { | 36 { |
| 37 } | 37 } |
| 38 | 38 |
| 39 } // namespace WebCore | 39 } // namespace blink |
| OLD | NEW |