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

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

Issue 399923002: [WIP] Implement DOMPoint of geometry interface. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: 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
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 DOMPoint_h
6 #define DOMPoint_h
7
8 #include "core/dom/DOMPointReadOnly.h"
9
10 #include "platform/heap/Handle.h"
11 #include "wtf/RefCounted.h"
12
13 namespace WebCore {
14
15 class DOMPoint : public DOMPointReadOnly {
16 public:
17 static DOMPoint* create()
18 {
19 return new DOMPoint();
20 }
21
22 virtual void trace(Visitor* v) OVERRIDE { DOMPointReadOnly::trace(v); }
23
24 protected:
25 DOMPoint() { }
26 };
27
28 } // namespace WebCore
29
30 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698