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

Side by Side Diff: third_party/WebKit/Source/core/dom/DOMQuad.cpp

Issue 2635543003: [GeometryInterface] add toJSON() function in DOMQuad (Closed)
Patch Set: [GeometryInterface] add toJson() function in DOMQuad 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 unified diff | Download patch
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 "core/dom/DOMQuad.h" 5 #include "core/dom/DOMQuad.h"
6 6
7 #include "bindings/core/v8/V8ObjectBuilder.h"
7 #include "core/dom/DOMPoint.h" 8 #include "core/dom/DOMPoint.h"
8 9
9 namespace blink { 10 namespace blink {
10 11
11 DOMQuad* DOMQuad::create(const DOMPointInit& p1, 12 DOMQuad* DOMQuad::create(const DOMPointInit& p1,
12 const DOMPointInit& p2, 13 const DOMPointInit& p2,
13 const DOMPointInit& p3, 14 const DOMPointInit& p3,
14 const DOMPointInit& p4) { 15 const DOMPointInit& p4) {
15 return new DOMQuad(p1, p2, p3, p4); 16 return new DOMQuad(p1, p2, p3, p4);
16 } 17 }
17 18
18 DOMQuad::DOMQuad(const DOMPointInit& p1, 19 DOMQuad::DOMQuad(const DOMPointInit& p1,
19 const DOMPointInit& p2, 20 const DOMPointInit& p2,
20 const DOMPointInit& p3, 21 const DOMPointInit& p3,
21 const DOMPointInit& p4) 22 const DOMPointInit& p4)
22 : m_p1(DOMPoint::fromPoint(p1)), 23 : m_p1(DOMPoint::fromPoint(p1)),
23 m_p2(DOMPoint::fromPoint(p2)), 24 m_p2(DOMPoint::fromPoint(p2)),
24 m_p3(DOMPoint::fromPoint(p3)), 25 m_p3(DOMPoint::fromPoint(p3)),
25 m_p4(DOMPoint::fromPoint(p4)) {} 26 m_p4(DOMPoint::fromPoint(p4)) {}
26 27
28 ScriptValue DOMQuad::toJSONForBinding(ScriptState* scriptState) const {
29 V8ObjectBuilder result(scriptState);
30 result.add("p1", p1());
31 result.add("p2", p2());
32 result.add("p3", p3());
33 result.add("p4", p4());
34 return result.scriptValue();
35 }
36
27 } // namespace blink 37 } // namespace blink
OLDNEW
« 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