Re: [deviceorientation] Remove [NoInterfaceObject] (#58)

For reference the interfaces are,

```
interface DeviceAcceleration {
  readonly attribute double? x;
  readonly attribute double? y;
  readonly attribute double? z;
};

interface DeviceRotationRate {
  readonly attribute double? alpha;
  readonly attribute double? beta;
  readonly attribute double? gamma;
};
```

These are both pretty generic vectors. I wish we could reuse [`DOMPointReadOnly`](https://www.w3.org/TR/geometry-1/#dompointreadonly). Maybe before removing [NoInterfaceObject] we could rename them to something like `DeviceMotionEventAcceleration` and `DeviceMotionEventRotationRate` or `DeviceAccelerationLegacy` and `DeviceRotationRateLegacy` just to highlight that these types are part of this API.

-- 
GitHub Notification of comment by reillyeon
Please view or discuss this issue at https://github.com/w3c/deviceorientation/issues/58#issuecomment-454517439 using your GitHub account

Received on Tuesday, 15 January 2019 19:22:55 UTC