2011-10-05 15:15:45 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2011-10-20 14:38:39 -07:00
|
|
|
/* vim: set sw=2 ts=8 et ft=cpp : */
|
2012-05-21 04:12:37 -07: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-05 15:15:45 -07:00
|
|
|
|
|
|
|
include protocol PContent;
|
2011-09-30 00:00:48 -07:00
|
|
|
include protocol PBrowser;
|
2012-02-05 11:51:06 -08:00
|
|
|
|
2013-10-01 12:25:07 -07:00
|
|
|
using mozilla::dom::ScreenOrientation from "mozilla/dom/ScreenOrientation.h";
|
|
|
|
using mozilla::hal::FlashMode from "mozilla/HalTypes.h";
|
|
|
|
using mozilla::hal::LightType from "mozilla/HalTypes.h";
|
|
|
|
using mozilla::hal::LightMode from "mozilla/HalTypes.h";
|
|
|
|
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";
|
|
|
|
using struct nsIntRect from "nsRect.h";
|
|
|
|
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-05 15:15:45 -07:00
|
|
|
|
|
|
|
namespace mozilla {
|
2011-11-02 08:14:01 -07:00
|
|
|
|
|
|
|
namespace hal {
|
2012-05-08 14:36:07 -07:00
|
|
|
struct BatteryInformation {
|
|
|
|
double level;
|
|
|
|
bool charging;
|
|
|
|
double remainingTime;
|
|
|
|
};
|
2012-01-16 05:39:57 -08:00
|
|
|
|
2012-05-08 14:36:07 -07:00
|
|
|
struct LightConfiguration {
|
|
|
|
LightType light;
|
|
|
|
LightMode mode;
|
|
|
|
FlashMode flash;
|
|
|
|
uint32_t flashOnMS;
|
|
|
|
uint32_t flashOffMS;
|
|
|
|
uint32_t color;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct SensorData {
|
|
|
|
SensorType sensor;
|
|
|
|
PRTime timestamp;
|
|
|
|
float[] values;
|
|
|
|
SensorAccuracyType accuracy;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct NetworkInformation {
|
|
|
|
double bandwidth;
|
|
|
|
bool canBeMetered;
|
2013-07-11 08:39:36 -07:00
|
|
|
bool isWifi;
|
|
|
|
uint32_t dhcpGateway;
|
2012-05-08 14:36:07 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
struct SwitchEvent {
|
|
|
|
SwitchDevice device;
|
|
|
|
SwitchState status;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct WakeLockInformation {
|
2013-05-10 08:20:52 -07:00
|
|
|
nsString topic;
|
2012-05-08 14:36:07 -07:00
|
|
|
uint32_t numLocks;
|
|
|
|
uint32_t numHidden;
|
2013-02-14 12:41:30 -08:00
|
|
|
uint64_t[] lockingProcesses;
|
2012-05-08 14:36:07 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
struct ScreenConfiguration {
|
|
|
|
nsIntRect rect;
|
|
|
|
ScreenOrientation orientation;
|
|
|
|
uint32_t colorDepth;
|
|
|
|
uint32_t pixelDepth;
|
|
|
|
};
|
2012-08-04 22:09:39 -07:00
|
|
|
|
2012-09-19 08:17:13 -07:00
|
|
|
struct FMRadioOperationInformation {
|
|
|
|
FMRadioOperation operation;
|
|
|
|
FMRadioOperationStatus status;
|
|
|
|
uint32_t frequency;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct FMRadioSettings {
|
|
|
|
FMRadioCountry country;
|
|
|
|
uint32_t upperLimit;
|
|
|
|
uint32_t lowerLimit;
|
|
|
|
uint32_t spaceType;
|
|
|
|
uint32_t preEmphasis;
|
|
|
|
};
|
|
|
|
|
2012-10-23 00:15:43 -07: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-04 22:09:39 -07:00
|
|
|
} // namespace hal
|
2012-03-07 03:03:25 -08:00
|
|
|
|
2011-10-05 15:15:45 -07:00
|
|
|
namespace hal_sandbox {
|
|
|
|
|
2011-11-02 08:14:01 -07:00
|
|
|
sync protocol PHal {
|
2011-10-05 15:15:45 -07:00
|
|
|
manager PContent;
|
|
|
|
|
2011-11-02 08:14:01 -07:00
|
|
|
child:
|
|
|
|
NotifyBatteryChange(BatteryInformation aBatteryInfo);
|
2012-01-16 05:39:57 -08:00
|
|
|
NotifyNetworkChange(NetworkInformation aNetworkInfo);
|
2012-03-07 03:03:25 -08:00
|
|
|
NotifyWakeLockChange(WakeLockInformation aWakeLockInfo);
|
2012-05-08 14:36:07 -07:00
|
|
|
NotifyScreenConfigurationChange(ScreenConfiguration aScreenOrientation);
|
2012-04-22 11:09:22 -07:00
|
|
|
NotifySwitchChange(SwitchEvent aEvent);
|
2012-10-23 00:15:43 -07:00
|
|
|
NotifySystemClockChange(int64_t aClockDeltaMS);
|
|
|
|
NotifySystemTimezoneChange(SystemTimezoneChangeInformation aSystemTimezoneChangeInfo);
|
2011-11-02 08:14:01 -07:00
|
|
|
|
2011-10-05 15:15:45 -07:00
|
|
|
parent:
|
2012-05-26 06:33:51 -07:00
|
|
|
Vibrate(uint32_t[] pattern, uint64_t[] id, PBrowser browser);
|
|
|
|
CancelVibrate(uint64_t[] id, PBrowser browser);
|
2011-10-05 15:15:45 -07:00
|
|
|
|
2011-11-02 08:14:01 -07:00
|
|
|
EnableBatteryNotifications();
|
|
|
|
DisableBatteryNotifications();
|
|
|
|
sync GetCurrentBatteryInformation()
|
|
|
|
returns (BatteryInformation aBatteryInfo);
|
|
|
|
|
2012-01-16 05:39:57 -08:00
|
|
|
EnableNetworkNotifications();
|
|
|
|
DisableNetworkNotifications();
|
|
|
|
sync GetCurrentNetworkInformation()
|
|
|
|
returns (NetworkInformation aNetworkInfo);
|
|
|
|
|
2011-12-04 09:07:00 -08:00
|
|
|
sync GetScreenEnabled() returns (bool enabled);
|
|
|
|
SetScreenEnabled(bool enabled);
|
|
|
|
|
2012-04-16 15:35:33 -07:00
|
|
|
sync GetCpuSleepAllowed() returns (bool allowed);
|
|
|
|
SetCpuSleepAllowed(bool allowed);
|
|
|
|
|
2011-12-04 09:07:00 -08:00
|
|
|
sync GetScreenBrightness() returns (double brightness);
|
|
|
|
SetScreenBrightness(double brightness);
|
2012-08-23 02:00:00 -07:00
|
|
|
|
2012-09-25 20:51:29 -07:00
|
|
|
AdjustSystemClock(int64_t aDeltaMilliseconds);
|
2012-02-17 02:44:00 -08:00
|
|
|
SetTimezone(nsCString aTimezoneSpec);
|
2012-08-23 02:00:00 -07:00
|
|
|
sync GetTimezone()
|
|
|
|
returns (nsCString aTimezoneSpec);
|
2013-10-15 01:43:53 -07:00
|
|
|
sync GetTimezoneOffset()
|
|
|
|
returns (int32_t aTimezoneOffset);
|
2012-10-23 00:15:43 -07:00
|
|
|
EnableSystemClockChangeNotifications();
|
|
|
|
DisableSystemClockChangeNotifications();
|
|
|
|
EnableSystemTimezoneChangeNotifications();
|
|
|
|
DisableSystemTimezoneChangeNotifications();
|
2011-12-04 09:07:00 -08:00
|
|
|
|
2012-02-01 22:09:00 -08:00
|
|
|
sync SetLight(LightType light, LightConfiguration aConfig)
|
|
|
|
returns (bool status);
|
|
|
|
sync GetLight(LightType light)
|
|
|
|
returns (LightConfiguration aConfig, bool status);
|
|
|
|
|
2012-11-17 07:05:18 -08:00
|
|
|
ModifyWakeLock(nsString aTopic,
|
|
|
|
WakeLockControl aLockAdjust,
|
|
|
|
WakeLockControl aHiddenAdjust,
|
|
|
|
uint64_t aProcessID);
|
2012-03-07 03:03:25 -08:00
|
|
|
EnableWakeLockNotifications();
|
|
|
|
DisableWakeLockNotifications();
|
|
|
|
sync GetWakeLockInfo(nsString aTopic)
|
|
|
|
returns (WakeLockInformation aWakeLockInfo);
|
|
|
|
|
2012-05-08 14:36:07 -07:00
|
|
|
EnableScreenConfigurationNotifications();
|
|
|
|
DisableScreenConfigurationNotifications();
|
|
|
|
sync GetCurrentScreenConfiguration()
|
|
|
|
returns (ScreenConfiguration aScreenConfiguration);
|
2012-03-29 12:43:16 -07:00
|
|
|
sync LockScreenOrientation(ScreenOrientation aOrientation)
|
|
|
|
returns (bool allowed);
|
|
|
|
UnlockScreenOrientation();
|
2012-04-22 11:09:22 -07:00
|
|
|
|
|
|
|
EnableSwitchNotifications(SwitchDevice aDevice);
|
|
|
|
DisableSwitchNotifications(SwitchDevice aDevice);
|
|
|
|
sync GetCurrentSwitchState(SwitchDevice aDevice)
|
|
|
|
returns (SwitchState aState);
|
2014-01-20 01:35:24 -08:00
|
|
|
NotifySwitchStateFromInputDevice(SwitchDevice aDevice, SwitchState aState);
|
2012-03-13 09:42:46 -07:00
|
|
|
|
2012-10-04 02:28:34 -07:00
|
|
|
FactoryReset();
|
|
|
|
|
2012-02-05 11:51:06 -08:00
|
|
|
child:
|
|
|
|
NotifySensorChange(SensorData aSensorData);
|
|
|
|
|
2012-09-19 08:17:13 -07:00
|
|
|
parent:
|
2012-02-05 11:51:06 -08:00
|
|
|
EnableSensorNotifications(SensorType aSensor);
|
|
|
|
DisableSensorNotifications(SensorType aSensor);
|
|
|
|
|
2011-10-05 15:15:45 -07:00
|
|
|
__delete__();
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace hal
|
|
|
|
} // namespace mozilla
|