OLD | NEW |
| (Empty) |
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 | |
3 // found in the LICENSE file. | |
4 | |
5 #include "content/browser/screen_orientation/screen_orientation_dispatcher_host.
h" | |
6 | |
7 #include "content/common/screen_orientation_messages.h" | |
8 | |
9 namespace content { | |
10 | |
11 ScreenOrientationDispatcherHost::ScreenOrientationDispatcherHost() { | |
12 } | |
13 | |
14 bool ScreenOrientationDispatcherHost::OnMessageReceived( | |
15 const IPC::Message& message, bool* message_was_ok) { | |
16 // TODO(mlamouri): we will handle lock and unlock requests here. | |
17 return false; | |
18 } | |
19 | |
20 void ScreenOrientationDispatcherHost::OnOrientationChange( | |
21 blink::WebScreenOrientation orientation) { | |
22 Send(new ScreenOrientationMsg_OrientationChange(orientation)); | |
23 } | |
24 | |
25 } // namespace content | |
OLD | NEW |