2011-10-06 02:15:45 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2011-10-21 01:38:39 +04:00
|
|
|
/* vim: set sw=2 ts=8 et ft=cpp : */
|
2012-05-21 15:12:37 +04:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2011-10-06 02:15:45 +04:00
|
|
|
|
|
|
|
include protocol PContent;
|
2011-09-30 11:00:48 +04:00
|
|
|
include protocol PBrowser;
|
2012-02-05 23:51:06 +04:00
|
|
|
|
2014-05-01 05:52:00 +04:00
|
|
|
include "mozilla/GfxMessageUtils.h";
|
|
|
|
|
2015-08-19 00:55:09 +03:00
|
|
|
using mozilla::dom::ScreenOrientationInternal from "mozilla/dom/ScreenOrientation.h";
|
2013-10-01 23:25:07 +04:00
|
|
|
using mozilla::hal::SensorType from "mozilla/HalSensor.h";
|
|
|
|
using mozilla::hal::SensorAccuracyType from "mozilla/HalSensor.h";
|
|
|
|
using mozilla::hal::WakeLockControl from "mozilla/HalTypes.h";
|
|
|
|
using mozilla::hal::SwitchState from "mozilla/HalTypes.h";
|
|
|
|
using mozilla::hal::SwitchDevice from "mozilla/HalTypes.h";
|
|
|
|
using mozilla::hal::ProcessPriority from "mozilla/HalTypes.h";
|
2015-04-21 18:04:57 +03:00
|
|
|
using nsIntRect from "nsRect.h";
|
2013-10-01 23:25:07 +04:00
|
|
|
using PRTime from "prtime.h";
|
|
|
|
using mozilla::hal::FMRadioCountry from "mozilla/HalTypes.h";
|
|
|
|
using mozilla::hal::FMRadioOperation from "mozilla/HalTypes.h";
|
|
|
|
using mozilla::hal::FMRadioOperationStatus from "mozilla/HalTypes.h";
|
2011-10-06 02:15:45 +04:00
|
|
|
|
|
|
|
namespace mozilla {
|
2011-11-02 19:14:01 +04:00
|
|
|
|
|
|
|
namespace hal {
|
2012-05-09 01:36:07 +04:00
|
|
|
struct BatteryInformation {
|
|
|
|
double level;
|
|
|
|
bool charging;
|
|
|
|
double remainingTime;
|
|
|
|
};
|
2012-01-16 17:39:57 +04:00
|
|
|
|
2012-05-09 01:36:07 +04:00
|
|
|
struct SensorData {
|
|
|
|
SensorType sensor;
|
|
|
|
PRTime timestamp;
|
|
|
|
float[] values;
|
|
|
|
SensorAccuracyType accuracy;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct NetworkInformation {
|
2014-03-05 07:54:55 +04:00
|
|
|
uint32_t type;
|
2013-07-11 19:39:36 +04:00
|
|
|
bool isWifi;
|
|
|
|
uint32_t dhcpGateway;
|
2012-05-09 01:36:07 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
struct SwitchEvent {
|
|
|
|
SwitchDevice device;
|
|
|
|
SwitchState status;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct WakeLockInformation {
|
2013-05-10 19:20:52 +04:00
|
|
|
nsString topic;
|
2012-05-09 01:36:07 +04:00
|
|
|
uint32_t numLocks;
|
|
|
|
uint32_t numHidden;
|
2013-02-15 00:41:30 +04:00
|
|
|
uint64_t[] lockingProcesses;
|
2012-05-09 01:36:07 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
struct ScreenConfiguration {
|
|
|
|
nsIntRect rect;
|
2015-08-19 00:55:09 +03:00
|
|
|
ScreenOrientationInternal orientation;
|
2015-08-19 00:55:15 +03:00
|
|
|
uint16_t angle;
|
2012-05-09 01:36:07 +04:00
|
|
|
uint32_t colorDepth;
|
|
|
|
uint32_t pixelDepth;
|
|
|
|
};
|
2012-08-05 09:09:39 +04:00
|
|
|
|
2012-09-19 19:17:13 +04:00
|
|
|
struct FMRadioOperationInformation {
|
|
|
|
FMRadioOperation operation;
|
|
|
|
FMRadioOperationStatus status;
|
|
|
|
uint32_t frequency;
|
|
|
|
};
|
|
|
|
|
2014-06-26 13:07:23 +04:00
|
|
|
struct FMRadioRDSGroup {
|
|
|
|
uint16_t blockA;
|
|
|
|
uint16_t blockB;
|
|
|
|
uint16_t blockC;
|
|
|
|
uint16_t blockD;
|
|
|
|
};
|
|
|
|
|
2012-09-19 19:17:13 +04:00
|
|
|
struct FMRadioSettings {
|
|
|
|
FMRadioCountry country;
|
|
|
|
uint32_t upperLimit;
|
|
|
|
uint32_t lowerLimit;
|
|
|
|
uint32_t spaceType;
|
|
|
|
uint32_t preEmphasis;
|
|
|
|
};
|
|
|
|
|
2012-10-23 11:15:43 +04:00
|
|
|
struct SystemTimezoneChangeInformation {
|
|
|
|
// These timezone offsets are relative to UTC in minutes and
|
|
|
|
// have already taken daylight saving time (DST) into account.
|
|
|
|
int32_t oldTimezoneOffsetMinutes;
|
|
|
|
int32_t newTimezoneOffsetMinutes;
|
|
|
|
};
|
|
|
|
|
2012-08-05 09:09:39 +04:00
|
|
|
} // namespace hal
|
2012-03-07 15:03:25 +04:00
|
|
|
|
2011-10-06 02:15:45 +04:00
|
|
|
namespace hal_sandbox {
|
|
|
|
|
2015-06-24 00:34:00 +03:00
|
|
|
prio(normal upto urgent) sync protocol PHal {
|
2011-10-06 02:15:45 +04:00
|
|
|
manager PContent;
|
|
|
|
|
2011-11-02 19:14:01 +04:00
|
|
|
child:
|
|
|
|
NotifyBatteryChange(BatteryInformation aBatteryInfo);
|
2012-01-16 17:39:57 +04:00
|
|
|
NotifyNetworkChange(NetworkInformation aNetworkInfo);
|
2012-03-07 15:03:25 +04:00
|
|
|
NotifyWakeLockChange(WakeLockInformation aWakeLockInfo);
|
2012-05-09 01:36:07 +04:00
|
|
|
NotifyScreenConfigurationChange(ScreenConfiguration aScreenOrientation);
|
2012-04-22 22:09:22 +04:00
|
|
|
NotifySwitchChange(SwitchEvent aEvent);
|
2012-10-23 11:15:43 +04:00
|
|
|
NotifySystemClockChange(int64_t aClockDeltaMS);
|
|
|
|
NotifySystemTimezoneChange(SystemTimezoneChangeInformation aSystemTimezoneChangeInfo);
|
2011-11-02 19:14:01 +04:00
|
|
|
|
2011-10-06 02:15:45 +04:00
|
|
|
parent:
|
2012-05-26 17:33:51 +04:00
|
|
|
Vibrate(uint32_t[] pattern, uint64_t[] id, PBrowser browser);
|
|
|
|
CancelVibrate(uint64_t[] id, PBrowser browser);
|
2011-10-06 02:15:45 +04:00
|
|
|
|
2011-11-02 19:14:01 +04:00
|
|
|
EnableBatteryNotifications();
|
|
|
|
DisableBatteryNotifications();
|
|
|
|
sync GetCurrentBatteryInformation()
|
|
|
|
returns (BatteryInformation aBatteryInfo);
|
|
|
|
|
2012-01-16 17:39:57 +04:00
|
|
|
EnableNetworkNotifications();
|
|
|
|
DisableNetworkNotifications();
|
|
|
|
sync GetCurrentNetworkInformation()
|
|
|
|
returns (NetworkInformation aNetworkInfo);
|
|
|
|
|
2011-12-04 21:07:00 +04:00
|
|
|
sync GetScreenEnabled() returns (bool enabled);
|
2014-05-30 07:11:23 +04:00
|
|
|
SetScreenEnabled(bool aEnabled);
|
|
|
|
|
|
|
|
sync GetKeyLightEnabled() returns (bool enabled);
|
|
|
|
SetKeyLightEnabled(bool aEnabled);
|
2011-12-04 21:07:00 +04:00
|
|
|
|
2012-04-17 02:35:33 +04:00
|
|
|
sync GetCpuSleepAllowed() returns (bool allowed);
|
2014-05-30 07:11:23 +04:00
|
|
|
SetCpuSleepAllowed(bool aAllowed);
|
2012-04-17 02:35:33 +04:00
|
|
|
|
2011-12-04 21:07:00 +04:00
|
|
|
sync GetScreenBrightness() returns (double brightness);
|
2014-05-30 07:11:23 +04:00
|
|
|
SetScreenBrightness(double aBrightness);
|
2012-08-23 13:00:00 +04:00
|
|
|
|
2012-09-26 07:51:29 +04:00
|
|
|
AdjustSystemClock(int64_t aDeltaMilliseconds);
|
2012-02-17 14:44:00 +04:00
|
|
|
SetTimezone(nsCString aTimezoneSpec);
|
2012-08-23 13:00:00 +04:00
|
|
|
sync GetTimezone()
|
|
|
|
returns (nsCString aTimezoneSpec);
|
2013-10-15 12:43:53 +04:00
|
|
|
sync GetTimezoneOffset()
|
|
|
|
returns (int32_t aTimezoneOffset);
|
2012-10-23 11:15:43 +04:00
|
|
|
EnableSystemClockChangeNotifications();
|
|
|
|
DisableSystemClockChangeNotifications();
|
|
|
|
EnableSystemTimezoneChangeNotifications();
|
|
|
|
DisableSystemTimezoneChangeNotifications();
|
2011-12-04 21:07:00 +04:00
|
|
|
|
2012-11-17 19:05:18 +04:00
|
|
|
ModifyWakeLock(nsString aTopic,
|
|
|
|
WakeLockControl aLockAdjust,
|
|
|
|
WakeLockControl aHiddenAdjust,
|
|
|
|
uint64_t aProcessID);
|
2012-03-07 15:03:25 +04:00
|
|
|
EnableWakeLockNotifications();
|
|
|
|
DisableWakeLockNotifications();
|
|
|
|
sync GetWakeLockInfo(nsString aTopic)
|
|
|
|
returns (WakeLockInformation aWakeLockInfo);
|
|
|
|
|
2012-05-09 01:36:07 +04:00
|
|
|
EnableScreenConfigurationNotifications();
|
|
|
|
DisableScreenConfigurationNotifications();
|
2015-06-24 00:34:00 +03:00
|
|
|
prio(urgent) sync GetCurrentScreenConfiguration()
|
2012-05-09 01:36:07 +04:00
|
|
|
returns (ScreenConfiguration aScreenConfiguration);
|
2015-08-19 00:55:09 +03:00
|
|
|
sync LockScreenOrientation(ScreenOrientationInternal aOrientation)
|
2012-03-29 23:43:16 +04:00
|
|
|
returns (bool allowed);
|
|
|
|
UnlockScreenOrientation();
|
2012-04-22 22:09:22 +04:00
|
|
|
|
|
|
|
EnableSwitchNotifications(SwitchDevice aDevice);
|
|
|
|
DisableSwitchNotifications(SwitchDevice aDevice);
|
|
|
|
sync GetCurrentSwitchState(SwitchDevice aDevice)
|
|
|
|
returns (SwitchState aState);
|
2012-03-13 20:42:46 +04:00
|
|
|
|
2014-07-18 05:30:47 +04:00
|
|
|
FactoryReset(nsString aReason);
|
2012-10-04 13:28:34 +04:00
|
|
|
|
2012-02-05 23:51:06 +04:00
|
|
|
child:
|
|
|
|
NotifySensorChange(SensorData aSensorData);
|
|
|
|
|
2012-09-19 19:17:13 +04:00
|
|
|
parent:
|
2012-02-05 23:51:06 +04:00
|
|
|
EnableSensorNotifications(SensorType aSensor);
|
|
|
|
DisableSensorNotifications(SensorType aSensor);
|
|
|
|
|
2011-10-06 02:15:45 +04:00
|
|
|
__delete__();
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace hal
|
|
|
|
} // namespace mozilla
|