Esempio n. 1
0
void
EnableBatteryNotifications()
{
  Hal()->SendEnableBatteryNotifications();
}
Esempio n. 2
0
void
GetWakeLockInfo(const nsAString &aTopic, WakeLockInformation *aWakeLockInfo)
{
  Hal()->SendGetWakeLockInfo(nsString(aTopic), aWakeLockInfo);
}
Esempio n. 3
0
void
DisableSwitchNotifications(SwitchDevice aDevice)
{
  Hal()->SendDisableSwitchNotifications(aDevice);
}
Esempio n. 4
0
void
EnableWakeLockNotifications()
{
  Hal()->SendEnableWakeLockNotifications();
}
Esempio n. 5
0
void
DisableWakeLockNotifications()
{
  Hal()->SendDisableWakeLockNotifications();
}
Esempio n. 6
0
void
EnableNetworkNotifications()
{
  Hal()->SendEnableNetworkNotifications();
}
Esempio n. 7
0
void
PowerOff()
{
  Hal()->SendPowerOff();
}
Esempio n. 8
0
void
GetCurrentNetworkInformation(NetworkInformation* aNetworkInfo)
{
  Hal()->SendGetCurrentNetworkInformation(aNetworkInfo);
}
Esempio n. 9
0
void
DisableScreenConfigurationNotifications()
{
  Hal()->SendDisableScreenConfigurationNotifications();
}
Esempio n. 10
0
void
SetScreenEnabled(bool enabled)
{
  Hal()->SendSetScreenEnabled(enabled);
}
Esempio n. 11
0
void
SetScreenBrightness(double brightness)
{
  Hal()->SendSetScreenBrightness(brightness);
}
Esempio n. 12
0
void
DisableSystemTimezoneChangeNotifications()
{
  Hal()->SendDisableSystemTimezoneChangeNotifications();
}
Esempio n. 13
0
void
DisableSystemClockChangeNotifications()
{
  Hal()->SendDisableSystemClockChangeNotifications();
}
Esempio n. 14
0
void
AdjustSystemClock(int64_t aDeltaMilliseconds)
{
  Hal()->SendAdjustSystemClock(aDeltaMilliseconds);
}
Esempio n. 15
0
void
DisableBatteryNotifications()
{
  Hal()->SendDisableBatteryNotifications();
}
Esempio n. 16
0
void
UnlockScreenOrientation()
{
  Hal()->SendUnlockScreenOrientation();
}
Esempio n. 17
0
void
GetCurrentBatteryInformation(BatteryInformation* aBatteryInfo)
{
  Hal()->SendGetCurrentBatteryInformation(aBatteryInfo);
}
Esempio n. 18
0
void
DisableSensorNotifications(SensorType aSensor) {
  Hal()->SendDisableSensorNotifications(aSensor);
}
Esempio n. 19
0
void
DisableNetworkNotifications()
{
  Hal()->SendDisableNetworkNotifications();
}
Esempio n. 20
0
void
Reboot()
{
  Hal()->SendReboot();
}