Exemplo n.º 1
0
void
SetFMRadioFrequency(const uint32_t aFrequency) {
  PROXY_IF_SANDBOXED(SetFMRadioFrequency(aFrequency));
}
Exemplo n.º 2
0
 void EnableNotifications() {
   PROXY_IF_SANDBOXED(EnableNetworkNotifications());
 }
Exemplo n.º 3
0
 void GetCurrentInformationInternal(NetworkInformation* aInfo) {
   PROXY_IF_SANDBOXED(GetCurrentNetworkInformation(aInfo));
 }
Exemplo n.º 4
0
void FactoryReset()
{
  AssertMainThread();
  PROXY_IF_SANDBOXED(FactoryReset());
}
Exemplo n.º 5
0
 void DisableNotifications() {
   PROXY_IF_SANDBOXED(DisableBatteryNotifications());
 }
Exemplo n.º 6
0
void
FMRadioSeek(const FMRadioSeekDirection& aDirection) {
  AssertMainThread();
  PROXY_IF_SANDBOXED(FMRadioSeek(aDirection));
}
Exemplo n.º 7
0
void
SetFMRadioFrequency(const uint32_t aFrequency) {
  AssertMainThread();
  PROXY_IF_SANDBOXED(SetFMRadioFrequency(aFrequency));
}
Exemplo n.º 8
0
 void DisableNotifications() {
   PROXY_IF_SANDBOXED(DisableSystemTimeChangeNotifications());
 }
Exemplo n.º 9
0
void 
AdjustSystemClock(int64_t aDeltaMilliseconds)
{
  AssertMainThread();
  PROXY_IF_SANDBOXED(AdjustSystemClock(aDeltaMilliseconds));
}
Exemplo n.º 10
0
void SetCpuSleepAllowed(bool allowed)
{
  AssertMainThread();
  PROXY_IF_SANDBOXED(SetCpuSleepAllowed(allowed));
}
Exemplo n.º 11
0
void SetScreenBrightness(double brightness)
{
  AssertMainThread();
  PROXY_IF_SANDBOXED(SetScreenBrightness(clamped(brightness, 0.0, 1.0)));
}
Exemplo n.º 12
0
void SetScreenEnabled(bool enabled)
{
  AssertMainThread();
  PROXY_IF_SANDBOXED(SetScreenEnabled(enabled));
}
Exemplo n.º 13
0
 void GetCurrentInformationInternal(ScreenConfiguration* aInfo) {
   PROXY_IF_SANDBOXED(GetCurrentScreenConfiguration(aInfo));
 }
Exemplo n.º 14
0
 void DisableNotifications() {
   PROXY_IF_SANDBOXED(DisableScreenConfigurationNotifications());
 }
Exemplo n.º 15
0
void
EnableFMRadio(const FMRadioSettings& aInfo) {
  AssertMainThread();
  PROXY_IF_SANDBOXED(EnableFMRadio(aInfo));
}
Exemplo n.º 16
0
void 
SetTimezone(const nsCString& aTimezoneSpec)
{
  AssertMainThread();
  PROXY_IF_SANDBOXED(SetTimezone(aTimezoneSpec));
}
Exemplo n.º 17
0
void
DisableFMRadio() {
  AssertMainThread();
  PROXY_IF_SANDBOXED(DisableFMRadio());
}
Exemplo n.º 18
0
void
DisableSensorNotifications(SensorType aSensor) {
  AssertMainThread();
  PROXY_IF_SANDBOXED(DisableSensorNotifications(aSensor));
}
Exemplo n.º 19
0
void
GetFMRadioSettings(FMRadioSettings* aInfo) {
  AssertMainThread();
  PROXY_IF_SANDBOXED(GetFMRadioSettings(aInfo));
}
Exemplo n.º 20
0
void Reboot()
{
  AssertMainThread();
  PROXY_IF_SANDBOXED(Reboot());
}
Exemplo n.º 21
0
void
CancelFMRadioSeek() {
  AssertMainThread();
  PROXY_IF_SANDBOXED(CancelFMRadioSeek());
}
Exemplo n.º 22
0
void PowerOff()
{
  AssertMainThread();
  PROXY_IF_SANDBOXED(PowerOff());
}
Exemplo n.º 23
0
 void EnableNotifications() {
   PROXY_IF_SANDBOXED(EnableBatteryNotifications());
 }
Exemplo n.º 24
0
void
GetWakeLockInfo(const nsAString &aTopic, WakeLockInformation *aWakeLockInfo)
{
  AssertMainThread();
  PROXY_IF_SANDBOXED(GetWakeLockInfo(aTopic, aWakeLockInfo));
}
Exemplo n.º 25
0
 void GetCurrentInformationInternal(BatteryInformation* aInfo) {
   PROXY_IF_SANDBOXED(GetCurrentBatteryInformation(aInfo));
 }
Exemplo n.º 26
0
void
UnlockScreenOrientation()
{
  AssertMainThread();
  PROXY_IF_SANDBOXED(UnlockScreenOrientation());
}
Exemplo n.º 27
0
 void DisableNotifications() {
   PROXY_IF_SANDBOXED(DisableNetworkNotifications());
 }
Exemplo n.º 28
0
void
DisableSwitchNotifications(hal::SwitchDevice aDevice) {
  AssertMainThread();
  PROXY_IF_SANDBOXED(DisableSwitchNotifications(aDevice));
}
Exemplo n.º 29
0
 void EnableNotifications() {
   PROXY_IF_SANDBOXED(EnableWakeLockNotifications());
 }
Exemplo n.º 30
0
void
FMRadioSeek(const FMRadioSeekDirection& aDirection) {
  PROXY_IF_SANDBOXED(FMRadioSeek(aDirection));
}