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

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

Issue 412373003: Implement DOMQuad of geometry interfaces. Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 4 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 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 #ifndef DOMPointReadOnly_h 5 #ifndef DOMPointReadOnly_h
6 #define DOMPointReadOnly_h 6 #define DOMPointReadOnly_h
7 7
8 #include "platform/heap/Handle.h" 8 #include "platform/heap/Handle.h"
9 9
10 namespace WebCore { 10 namespace WebCore {
11 11
12 class DOMPointReadOnly : public GarbageCollected<DOMPointReadOnly> { 12 class DOMPointReadOnly : public GarbageCollected<DOMPointReadOnly> {
13 public: 13 public:
14 static DOMPointReadOnly* create(double x, double y, double z, double w); 14 static DOMPointReadOnly* create(double x, double y, double z, double w);
15 15
16 double x() const { return m_x; } 16 double x() const { return m_x; }
17 double y() const { return m_y; } 17 double y() const { return m_y; }
18 double z() const { return m_z; } 18 double z() const { return m_z; }
19 double w() const { return m_w; } 19 double w() const { return m_w; }
20 20
21 void trace(Visitor*) { } 21 virtual void trace(Visitor*) { }
22 22
23 protected: 23 protected:
24 DOMPointReadOnly(double x, double y, double z, double w); 24 DOMPointReadOnly(double x, double y, double z, double w);
25 25
26 double m_x; 26 double m_x;
27 double m_y; 27 double m_y;
28 double m_z; 28 double m_z;
29 double m_w; 29 double m_w;
30 }; 30 };
31 31
32 } // namespace WebCore 32 } // namespace WebCore
33 33
34 #endif 34 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698