OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef ScreenOrientation_h | 5 #ifndef ScreenOrientation_h |
6 #define ScreenOrientation_h | 6 #define ScreenOrientation_h |
7 | 7 |
8 #include "bindings/core/v8/ScriptWrappable.h" | 8 #include "bindings/core/v8/ScriptWrappable.h" |
9 #include "core/events/EventTarget.h" | 9 #include "core/events/EventTarget.h" |
10 #include "core/frame/DOMWindowProperty.h" | 10 #include "core/frame/DOMWindowProperty.h" |
11 #include "platform/heap/Handle.h" | 11 #include "platform/heap/Handle.h" |
12 #include "public/platform/WebScreenOrientationType.h" | 12 #include "public/platform/WebScreenOrientationType.h" |
13 #include "wtf/text/AtomicString.h" | 13 #include "wtf/text/AtomicString.h" |
14 #include "wtf/text/WTFString.h" | 14 #include "wtf/text/WTFString.h" |
15 | 15 |
16 namespace blink { | 16 namespace blink { |
17 | 17 |
18 class ExecutionContext; | 18 class ExecutionContext; |
19 class LocalFrame; | 19 class LocalFrame; |
20 class ScriptPromise; | 20 class ScriptPromise; |
21 class ScriptState; | 21 class ScriptState; |
22 class ScreenOrientationController; | 22 class ScreenOrientationController; |
23 | 23 |
24 class ScreenOrientation FINAL : | 24 class ScreenOrientation FINAL |
25 public RefCountedGarbageCollectedWillBeGarbageCollectedFinalized<ScreenOrien
tation>, | 25 : public RefCountedGarbageCollectedWillBeGarbageCollectedFinalized<ScreenOri
entation> |
26 public EventTargetWithInlineData, | 26 , public EventTargetWithInlineData |
27 DOMWindowProperty { | 27 , DOMWindowProperty { |
28 DEFINE_EVENT_TARGET_REFCOUNTING_WILL_BE_REMOVED(RefCountedGarbageCollectedWi
llBeGarbageCollectedFinalized<ScreenOrientation>); | 28 DEFINE_EVENT_TARGET_REFCOUNTING_WILL_BE_REMOVED(RefCountedGarbageCollectedWi
llBeGarbageCollectedFinalized<ScreenOrientation>); |
29 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(ScreenOrientation); | 29 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(ScreenOrientation); |
30 public: | 30 public: |
31 static ScreenOrientation* create(LocalFrame*); | 31 static ScreenOrientation* create(LocalFrame*); |
32 | 32 |
33 virtual ~ScreenOrientation(); | 33 virtual ~ScreenOrientation(); |
34 | 34 |
35 // EventTarget implementation. | 35 // EventTarget implementation. |
36 virtual const WTF::AtomicString& interfaceName() const OVERRIDE; | 36 virtual const WTF::AtomicString& interfaceName() const OVERRIDE; |
37 virtual ExecutionContext* executionContext() const OVERRIDE; | 37 virtual ExecutionContext* executionContext() const OVERRIDE; |
(...skipping 19 matching lines...) Expand all Loading... |
57 | 57 |
58 ScreenOrientationController* controller(); | 58 ScreenOrientationController* controller(); |
59 | 59 |
60 blink::WebScreenOrientationType m_type; | 60 blink::WebScreenOrientationType m_type; |
61 unsigned short m_angle; | 61 unsigned short m_angle; |
62 }; | 62 }; |
63 | 63 |
64 } // namespace blink | 64 } // namespace blink |
65 | 65 |
66 #endif // ScreenOrientation_h | 66 #endif // ScreenOrientation_h |
OLD | NEW |