Index: third_party/WebKit/Source/modules/sensor/NavigatorAmbientLightSensor.idl |
diff --git a/third_party/WebKit/Source/modules/sensor/NavigatorAmbientLightSensor.idl b/third_party/WebKit/Source/modules/sensor/NavigatorAmbientLightSensor.idl |
new file mode 100644 |
index 0000000000000000000000000000000000000000..d3ced9975382e9dd40f775514656bba633436f3c |
--- /dev/null |
+++ b/third_party/WebKit/Source/modules/sensor/NavigatorAmbientLightSensor.idl |
@@ -0,0 +1,12 @@ |
+// 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/ambient-light/ |
+ |
+[ |
+ Exposed=(Window), |
+ RuntimeEnabled=Sensor, |
+] partial interface Navigator { |
+ [RaisesException, CallWith=ExecutionContext] readonly attribute AmbientLightSensor lightSensor; |
+}; |