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