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