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