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

Side by Side Diff: Source/core/dom/DOMPointReadOnly.h

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 unified diff | Download patch
« no previous file with comments | « Source/core/dom/DOMPoint.idl ('k') | Source/core/dom/DOMPointReadOnly.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef DOMPointReadOnly_h
6 #define DOMPointReadOnly_h
7
8 #include "platform/heap/Handle.h"
9
10 namespace WebCore {
11
12 class DOMPointReadOnly : public GarbageCollected<DOMPointReadOnly> {
13 public:
14 static DOMPointReadOnly* create(double x, double y, double z, double w);
15
16 double x() const { return m_x; }
17 double y() const { return m_y; }
18 double z() const { return m_z; }
19 double w() const { return m_w; }
20
21 void trace(Visitor*) { }
22
23 protected:
24 DOMPointReadOnly(double x, double y, double z, double w);
25
26 double m_x;
27 double m_y;
28 double m_z;
29 double m_w;
30 };
31
32 } // namespace WebCore
33
34 #endif
OLDNEW
« no previous file with comments | « Source/core/dom/DOMPoint.idl ('k') | Source/core/dom/DOMPointReadOnly.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698