Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(147)

Unified Diff: third_party/WebKit/Source/modules/sensor/Sensor.idl

Issue 2798913002: [Sensors] Stop exposing sensor state (Closed)
Patch Set: Comments from Reilly Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/WebKit/Source/modules/sensor/Sensor.cpp ('k') | tools/metrics/histograms/histograms.xml » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/modules/sensor/Sensor.idl
diff --git a/third_party/WebKit/Source/modules/sensor/Sensor.idl b/third_party/WebKit/Source/modules/sensor/Sensor.idl
index 45f02c4944cf3416fee2fdbabeb221aa9a309473..2d8004d6265527cdb1e55de5fcadd479e62b4ff0 100644
--- a/third_party/WebKit/Source/modules/sensor/Sensor.idl
+++ b/third_party/WebKit/Source/modules/sensor/Sensor.idl
@@ -3,22 +3,14 @@
// found in the LICENSE file.
// Specification at:
-// https://w3c.github.io/sensors/#sensor0
-
-enum SensorState {
- "unconnected",
- "activating",
- "activated",
- "idle",
- "errored"
-};
+// https://w3c.github.io/sensors/#the-sensor-interface
[
ActiveScriptWrappable,
DependentLifetime,
RuntimeEnabled=Sensor,
] interface Sensor : EventTarget {
- [MeasureAs=GenericSensorState] readonly attribute SensorState state;
+ [MeasureAs=GenericSensorActivated] readonly attribute boolean activated;
[CallWith=ScriptState] readonly attribute DOMHighResTimeStamp? timestamp;
[MeasureAs=GenericSensorStart] void start();
« no previous file with comments | « third_party/WebKit/Source/modules/sensor/Sensor.cpp ('k') | tools/metrics/histograms/histograms.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698