1// Copyright 2017 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// https://w3c.github.io/deviceorientation/spec-source-orientation.html#devicemotion
6
7dictionary DeviceMotionEventAccelerationInit {
8  double? x = null;
9  double? y = null;
10  double? z = null;
11};
12