| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2007 Apple Inc. All rights reserved. | 2 * Copyright (C) 2007 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 * | 7 * |
| 8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 27 */ | 27 */ |
| 28 | 28 |
| 29 | 29 |
| 30 #ifndef Screen_h | 30 #ifndef Screen_h |
| 31 #define Screen_h | 31 #define Screen_h |
| 32 | 32 |
| 33 #include "bindings/v8/ScriptWrappable.h" | 33 #include "bindings/v8/ScriptWrappable.h" |
| 34 #include "core/events/EventTarget.h" | 34 #include "core/events/EventTarget.h" |
| 35 #include "core/frame/DOMWindowProperty.h" | 35 #include "core/frame/DOMWindowProperty.h" |
| 36 #include "heap/Handle.h" |
| 36 #include "platform/Supplementable.h" | 37 #include "platform/Supplementable.h" |
| 37 #include "wtf/PassRefPtr.h" | 38 #include "wtf/PassRefPtr.h" |
| 38 #include "wtf/RefCounted.h" | 39 #include "wtf/RefCounted.h" |
| 39 | 40 |
| 40 namespace WebCore { | 41 namespace WebCore { |
| 41 | 42 |
| 42 class LocalFrame; | 43 class LocalFrame; |
| 43 | 44 |
| 44 class Screen FINAL : public ScriptWrappable, public RefCounted<Screen>, publ
ic EventTargetWithInlineData, public DOMWindowProperty, public Supplementable<Sc
reen> { | 45 class Screen FINAL : public RefCountedWillBeRefCountedGarbageCollected<Scree
n>, public ScriptWrappable, public EventTargetWithInlineData, public DOMWindowPr
operty, public WillBeHeapSupplementable<Screen> { |
| 45 REFCOUNTED_EVENT_TARGET(Screen); | 46 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(Screen); |
| 47 DEFINE_EVENT_TARGET_REFCOUNTING(RefCountedWillBeRefCountedGarbageCollect
ed<Screen>); |
| 46 public: | 48 public: |
| 47 static PassRefPtr<Screen> create(LocalFrame* frame) { return adoptRef(ne
w Screen(frame)); } | 49 static PassRefPtrWillBeRawPtr<Screen> create(LocalFrame* frame) |
| 50 { |
| 51 return adoptRefWillBeRefCountedGarbageCollected(new Screen(frame)); |
| 52 } |
| 48 | 53 |
| 49 unsigned height() const; | 54 unsigned height() const; |
| 50 unsigned width() const; | 55 unsigned width() const; |
| 51 unsigned colorDepth() const; | 56 unsigned colorDepth() const; |
| 52 unsigned pixelDepth() const; | 57 unsigned pixelDepth() const; |
| 53 int availLeft() const; | 58 int availLeft() const; |
| 54 int availTop() const; | 59 int availTop() const; |
| 55 unsigned availHeight() const; | 60 unsigned availHeight() const; |
| 56 unsigned availWidth() const; | 61 unsigned availWidth() const; |
| 57 | 62 |
| 58 // EventTarget. | 63 // EventTarget. |
| 59 virtual const AtomicString& interfaceName() const OVERRIDE; | 64 virtual const AtomicString& interfaceName() const OVERRIDE; |
| 60 virtual ExecutionContext* executionContext() const OVERRIDE; | 65 virtual ExecutionContext* executionContext() const OVERRIDE; |
| 61 | 66 |
| 67 void trace(Visitor*); |
| 68 |
| 62 private: | 69 private: |
| 63 explicit Screen(LocalFrame*); | 70 explicit Screen(LocalFrame*); |
| 64 }; | 71 }; |
| 65 | 72 |
| 66 } // namespace WebCore | 73 } // namespace WebCore |
| 67 | 74 |
| 68 #endif // Screen_h | 75 #endif // Screen_h |
| OLD | NEW |