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 CONTENT_RENDERER_SCREEN_ORIENTATION_SCREEN_ORIENTATION_DISPATCHER_H_ | 5 #ifndef CONTENT_RENDERER_SCREEN_ORIENTATION_SCREEN_ORIENTATION_DISPATCHER_H_ |
6 #define CONTENT_RENDERER_SCREEN_ORIENTATION_SCREEN_ORIENTATION_DISPATCHER_H_ | 6 #define CONTENT_RENDERER_SCREEN_ORIENTATION_SCREEN_ORIENTATION_DISPATCHER_H_ |
7 | 7 |
8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
9 #include "base/id_map.h" | 9 #include "base/id_map.h" |
10 #include "base/macros.h" | 10 #include "base/macros.h" |
11 #include "content/public/renderer/render_frame_observer.h" | 11 #include "content/public/renderer/render_frame_observer.h" |
12 #include "third_party/WebKit/public/platform/WebLockOrientationCallback.h" | 12 #include "third_party/WebKit/public/platform/WebLockOrientationCallback.h" |
13 #include "third_party/WebKit/public/platform/WebScreenOrientationClient.h" | 13 #include "third_party/WebKit/public/platform/WebScreenOrientationClient.h" |
14 #include "third_party/WebKit/public/platform/WebScreenOrientationLockType.h" | 14 #include "third_party/WebKit/public/platform/WebScreenOrientationLockType.h" |
15 #include "third_party/WebKit/public/platform/WebScreenOrientationType.h" | 15 #include "third_party/WebKit/public/platform/WebScreenOrientationType.h" |
16 | 16 |
17 namespace blink { | |
18 class WebScreenOrientationListener; | |
19 } | |
20 | |
21 namespace content { | 17 namespace content { |
22 | 18 |
23 class RenderFrame; | 19 class RenderFrame; |
24 | 20 |
25 // ScreenOrientationDispatcher implements the WebScreenOrientationClient API | 21 // ScreenOrientationDispatcher implements the WebScreenOrientationClient API |
26 // which handles screen lock. It sends lock (or unlock) requests to the browser | 22 // which handles screen lock. It sends lock (or unlock) requests to the browser |
27 // process and listens for responses and let Blink know about the result of the | 23 // process and listens for responses and let Blink know about the result of the |
28 // request via WebLockOrientationCallback. | 24 // request via WebLockOrientationCallback. |
29 class CONTENT_EXPORT ScreenOrientationDispatcher : | 25 class CONTENT_EXPORT ScreenOrientationDispatcher : |
30 public RenderFrameObserver, | 26 public RenderFrameObserver, |
(...skipping 29 matching lines...) Expand all Loading... |
60 // which is what IDMap was designed for. | 56 // which is what IDMap was designed for. |
61 typedef IDMap<blink::WebLockOrientationCallback, IDMapOwnPointer> CallbackMap; | 57 typedef IDMap<blink::WebLockOrientationCallback, IDMapOwnPointer> CallbackMap; |
62 CallbackMap pending_callbacks_; | 58 CallbackMap pending_callbacks_; |
63 | 59 |
64 DISALLOW_COPY_AND_ASSIGN(ScreenOrientationDispatcher); | 60 DISALLOW_COPY_AND_ASSIGN(ScreenOrientationDispatcher); |
65 }; | 61 }; |
66 | 62 |
67 } // namespace content | 63 } // namespace content |
68 | 64 |
69 #endif // CONTENT_RENDERER_SCREEN_ORIENTATION_SCREEN_ORIENTATION_DISPATCHER_H_ | 65 #endif // CONTENT_RENDERER_SCREEN_ORIENTATION_SCREEN_ORIENTATION_DISPATCHER_H_ |
OLD | NEW |