Line data Source code
1 : /* This Source Code Form is subject to the terms of the Mozilla Public
2 : * License, v. 2.0. If a copy of the MPL was not distributed with this file,
3 : * You can obtain one at http://mozilla.org/MPL/2.0/. */
4 :
5 : #include "FallbackScreenConfiguration.h"
6 :
7 : namespace mozilla {
8 : namespace hal_impl {
9 :
10 : void
11 1 : EnableScreenConfigurationNotifications()
12 : {
13 1 : }
14 :
15 : void
16 0 : DisableScreenConfigurationNotifications()
17 : {
18 0 : }
19 :
20 : void
21 1 : GetCurrentScreenConfiguration(hal::ScreenConfiguration* aScreenConfiguration)
22 : {
23 1 : fallback::GetCurrentScreenConfiguration(aScreenConfiguration);
24 1 : }
25 :
26 : bool
27 0 : LockScreenOrientation(const dom::ScreenOrientationInternal& aOrientation)
28 : {
29 0 : return false;
30 : }
31 :
32 : void
33 0 : UnlockScreenOrientation()
34 : {
35 0 : }
36 :
37 : } // namespace hal_impl
38 : } // namespace mozilla
|