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

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

Issue 2908393002: [Sensors] Bindings for RelativeOrientationSensor (Closed)
Patch Set: updated webexposed tests results Created 3 years, 7 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
Index: third_party/WebKit/Source/modules/sensor/RelativeOrientationSensor.idl
diff --git a/third_party/WebKit/Source/modules/sensor/RelativeOrientationSensor.idl b/third_party/WebKit/Source/modules/sensor/RelativeOrientationSensor.idl
new file mode 100644
index 0000000000000000000000000000000000000000..b782ad948f8c0c1f229e118209e8742cdd0f807c
--- /dev/null
+++ b/third_party/WebKit/Source/modules/sensor/RelativeOrientationSensor.idl
@@ -0,0 +1,15 @@
+// Copyright 2017 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+// Specification at:
+// https://w3c.github.io/orientation-sensor/#relativeorientationsensor-interface
+
+[
+ RuntimeEnabled=Sensor,
+ Constructor(optional SensorOptions sensorOptions),
+ ConstructorCallWith=ExecutionContext,
+ RaisesException=Constructor,
+ MeasureAs=RelativeOrientationSensorConstructor
+] interface RelativeOrientationSensor : OrientationSensor {
+};

Powered by Google App Engine
This is Rietveld 408576698