OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2009 Apple Inc. All Rights Reserved. | 2 * Copyright (C) 2009 Apple Inc. All Rights Reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
6 * are met: | 6 * are met: |
7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
(...skipping 10 matching lines...) Expand all Loading... |
21 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 21 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
24 * | 24 * |
25 */ | 25 */ |
26 | 26 |
27 #ifndef ClientRect_h | 27 #ifndef ClientRect_h |
28 #define ClientRect_h | 28 #define ClientRect_h |
29 | 29 |
30 #include "bindings/core/v8/ScriptWrappable.h" | 30 #include "bindings/core/v8/ScriptWrappable.h" |
| 31 #include "core/CoreExport.h" |
31 #include "platform/geometry/FloatRect.h" | 32 #include "platform/geometry/FloatRect.h" |
32 #include "platform/heap/Handle.h" | 33 #include "platform/heap/Handle.h" |
33 #include "wtf/PassRefPtr.h" | 34 #include "wtf/PassRefPtr.h" |
34 #include "wtf/RefCounted.h" | 35 #include "wtf/RefCounted.h" |
35 | 36 |
36 namespace blink { | 37 namespace blink { |
37 | 38 |
38 class IntRect; | 39 class IntRect; |
39 | 40 |
40 class ClientRect final : public RefCountedWillBeGarbageCollected<ClientRect>, pu
blic ScriptWrappable { | 41 class CORE_EXPORT ClientRect final : public RefCountedWillBeGarbageCollected<Cli
entRect>, public ScriptWrappable { |
41 DEFINE_WRAPPERTYPEINFO(); | 42 DEFINE_WRAPPERTYPEINFO(); |
42 public: | 43 public: |
43 static PassRefPtrWillBeRawPtr<ClientRect> create() | 44 static PassRefPtrWillBeRawPtr<ClientRect> create() |
44 { | 45 { |
45 return adoptRefWillBeNoop(new ClientRect); | 46 return adoptRefWillBeNoop(new ClientRect); |
46 } | 47 } |
47 static PassRefPtrWillBeRawPtr<ClientRect> create(const IntRect& rect) | 48 static PassRefPtrWillBeRawPtr<ClientRect> create(const IntRect& rect) |
48 { | 49 { |
49 return adoptRefWillBeNoop(new ClientRect(rect)); | 50 return adoptRefWillBeNoop(new ClientRect(rect)); |
50 } | 51 } |
(...skipping 15 matching lines...) Expand all Loading... |
66 ClientRect(); | 67 ClientRect(); |
67 explicit ClientRect(const IntRect&); | 68 explicit ClientRect(const IntRect&); |
68 explicit ClientRect(const FloatRect&); | 69 explicit ClientRect(const FloatRect&); |
69 | 70 |
70 FloatRect m_rect; | 71 FloatRect m_rect; |
71 }; | 72 }; |
72 | 73 |
73 } // namespace blink | 74 } // namespace blink |
74 | 75 |
75 #endif // ClientRect_h | 76 #endif // ClientRect_h |
OLD | NEW |