/src/mozilla-central/hal/fallback/FallbackScreenConfiguration.cpp
Line | Count | Source (jump to first uncovered line) |
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 | | EnableScreenConfigurationNotifications() |
12 | 0 | { |
13 | 0 | } |
14 | | |
15 | | void |
16 | | DisableScreenConfigurationNotifications() |
17 | 0 | { |
18 | 0 | } |
19 | | |
20 | | void |
21 | | GetCurrentScreenConfiguration(hal::ScreenConfiguration* aScreenConfiguration) |
22 | 0 | { |
23 | 0 | fallback::GetCurrentScreenConfiguration(aScreenConfiguration); |
24 | 0 | } |
25 | | |
26 | | bool |
27 | | LockScreenOrientation(const ScreenOrientation& aOrientation) |
28 | 0 | { |
29 | 0 | return false; |
30 | 0 | } |
31 | | |
32 | | void |
33 | | UnlockScreenOrientation() |
34 | 0 | { |
35 | 0 | } |
36 | | |
37 | | } // namespace hal_impl |
38 | | } // namespace mozilla |