Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 // Specification at: | |
| 6 // https://w3c.github.io/sensors/#sensor0 | |
| 7 | |
| 8 enum SensorState { | |
| 9 "idle", | |
| 10 "activating", | |
| 11 "active", | |
| 12 "errored" | |
|
timvolodine
2016/05/06 17:04:30
should there be something corresponding to 'there
riju_
2016/05/12 14:12:45
Spec issues: Let us resolve them in the spec discu
| |
| 13 }; | |
| 14 | |
| 15 [ | |
| 16 RuntimeEnabled=Sensor, | |
| 17 DependentLifetime, | |
| 18 ] interface Sensor : EventTarget { | |
| 19 // TODO (riju) : Add state info in next CL. | |
| 20 // readonly attribute SensorState state; | |
| 21 readonly attribute SensorReading? reading; | |
| 22 | |
| 23 [CallWith=ScriptState, RaisesException] void start(); | |
| 24 [CallWith=ScriptState, RaisesException] void stop(); | |
| 25 | |
| 26 attribute EventHandler onerror; | |
| 27 attribute EventHandler onchange; | |
| 28 attribute EventHandler onstatechange; | |
| 29 }; | |
| OLD | NEW |