| 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 13 matching lines...) Expand all Loading... |
| 24 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 24 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 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" | |
| 35 #include "core/frame/DOMWindowProperty.h" | 34 #include "core/frame/DOMWindowProperty.h" |
| 36 #include "heap/Handle.h" | 35 #include "heap/Handle.h" |
| 37 #include "platform/Supplementable.h" | 36 #include "platform/Supplementable.h" |
| 38 #include "wtf/PassRefPtr.h" | 37 #include "wtf/PassRefPtr.h" |
| 39 #include "wtf/RefCounted.h" | 38 #include "wtf/RefCounted.h" |
| 40 | 39 |
| 41 namespace WebCore { | 40 namespace WebCore { |
| 42 | 41 |
| 43 class LocalFrame; | 42 class LocalFrame; |
| 44 | 43 |
| 45 class Screen FINAL : public RefCountedWillBeRefCountedGarbageCollected<Scree
n>, public ScriptWrappable, public EventTargetWithInlineData, public DOMWindowPr
operty, public WillBeHeapSupplementable<Screen> { | 44 class Screen FINAL : public RefCountedWillBeRefCountedGarbageCollected<Scree
n>, public ScriptWrappable, public DOMWindowProperty, public WillBeHeapSupplemen
table<Screen> { |
| 46 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(Screen); | 45 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(Screen); |
| 47 DEFINE_EVENT_TARGET_REFCOUNTING(RefCountedWillBeRefCountedGarbageCollect
ed<Screen>); | |
| 48 public: | 46 public: |
| 49 static PassRefPtrWillBeRawPtr<Screen> create(LocalFrame* frame) | 47 static PassRefPtrWillBeRawPtr<Screen> create(LocalFrame* frame) |
| 50 { | 48 { |
| 51 return adoptRefWillBeRefCountedGarbageCollected(new Screen(frame)); | 49 return adoptRefWillBeRefCountedGarbageCollected(new Screen(frame)); |
| 52 } | 50 } |
| 53 | 51 |
| 54 unsigned height() const; | 52 unsigned height() const; |
| 55 unsigned width() const; | 53 unsigned width() const; |
| 56 unsigned colorDepth() const; | 54 unsigned colorDepth() const; |
| 57 unsigned pixelDepth() const; | 55 unsigned pixelDepth() const; |
| 58 int availLeft() const; | 56 int availLeft() const; |
| 59 int availTop() const; | 57 int availTop() const; |
| 60 unsigned availHeight() const; | 58 unsigned availHeight() const; |
| 61 unsigned availWidth() const; | 59 unsigned availWidth() const; |
| 62 | 60 |
| 63 // EventTarget. | |
| 64 virtual const AtomicString& interfaceName() const OVERRIDE; | |
| 65 virtual ExecutionContext* executionContext() const OVERRIDE; | |
| 66 | |
| 67 void trace(Visitor*); | 61 void trace(Visitor*); |
| 68 | 62 |
| 69 private: | 63 private: |
| 70 explicit Screen(LocalFrame*); | 64 explicit Screen(LocalFrame*); |
| 71 }; | 65 }; |
| 72 | 66 |
| 73 } // namespace WebCore | 67 } // namespace WebCore |
| 74 | 68 |
| 75 #endif // Screen_h | 69 #endif // Screen_h |
| OLD | NEW |