OLD | NEW |
(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 |
OLD | NEW |