| Index: third_party/WebKit/Source/modules/sensor/OrientationSensor.idl
|
| diff --git a/third_party/WebKit/Source/modules/sensor/OrientationSensor.idl b/third_party/WebKit/Source/modules/sensor/OrientationSensor.idl
|
| index 98692644d44a95471560c66e3df30038dfc48b2c..bfd51f37c05301d106b363721fe9c9df14e26043 100644
|
| --- a/third_party/WebKit/Source/modules/sensor/OrientationSensor.idl
|
| +++ b/third_party/WebKit/Source/modules/sensor/OrientationSensor.idl
|
| @@ -5,9 +5,11 @@
|
| // Specification at:
|
| // https://w3c.github.io/orientation-sensor/
|
|
|
| +typedef (Float32Array or Float64Array or DOMMatrix) RotationMatrixType;
|
| +
|
| [
|
| RuntimeEnabled=Sensor,
|
| ] interface OrientationSensor : Sensor {
|
| [CachedAttribute=isReadingDirty] readonly attribute FrozenArray<double>? quaternion;
|
| - [RaisesException] void populateMatrix(Float32Array targetBuffer);
|
| + [RaisesException] void populateMatrix(RotationMatrixType targetBuffer);
|
| };
|
|
|