2012-03-13 20:42:46 +04:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
2017-03-09 06:06:09 +03:00
|
|
|
#include "FallbackScreenConfiguration.h"
|
2012-03-13 20:42:46 +04:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace hal_impl {
|
|
|
|
|
2012-05-09 01:36:07 +04:00
|
|
|
void EnableScreenConfigurationNotifications() {}
|
2012-03-13 20:42:46 +04:00
|
|
|
|
2012-05-09 01:36:07 +04:00
|
|
|
void DisableScreenConfigurationNotifications() {}
|
2012-03-13 20:42:46 +04:00
|
|
|
|
2012-05-09 01:36:07 +04:00
|
|
|
void GetCurrentScreenConfiguration(
|
|
|
|
hal::ScreenConfiguration* aScreenConfiguration) {
|
2017-03-09 06:06:09 +03:00
|
|
|
fallback::GetCurrentScreenConfiguration(aScreenConfiguration);
|
2012-03-13 20:42:46 +04:00
|
|
|
}
|
|
|
|
|
2018-08-29 23:54:56 +03:00
|
|
|
bool LockScreenOrientation(const ScreenOrientation& aOrientation) {
|
2012-03-29 23:43:16 +04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void UnlockScreenOrientation() {}
|
|
|
|
|
2015-07-13 18:25:42 +03:00
|
|
|
} // namespace hal_impl
|
|
|
|
} // namespace mozilla
|