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

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

Issue 2684743003: [Sensors] start() and stop() methods do not throw (Closed)
Patch Set: Created 3 years, 10 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
« no previous file with comments | « third_party/WebKit/Source/modules/sensor/Sensor.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/modules/sensor/Sensor.idl
diff --git a/third_party/WebKit/Source/modules/sensor/Sensor.idl b/third_party/WebKit/Source/modules/sensor/Sensor.idl
index 56ac99f117b43f9290a9f7f679ac179b4fe360be..daf1e537a99501a0e55cfc94b01f7ae7edbff8cc 100644
--- a/third_party/WebKit/Source/modules/sensor/Sensor.idl
+++ b/third_party/WebKit/Source/modules/sensor/Sensor.idl
@@ -21,8 +21,8 @@ enum SensorState {
readonly attribute SensorState state;
[CallWith=ScriptState] readonly attribute DOMHighResTimeStamp? timestamp;
- [CallWith=ScriptState, RaisesException, MeasureAs=GenericSensorStart] void start();
- [CallWith=ScriptState, RaisesException, MeasureAs=GenericSensorStop] void stop();
+ [MeasureAs=GenericSensorStart] void start();
+ [MeasureAs=GenericSensorStop] void stop();
attribute EventHandler onerror;
attribute EventHandler onchange;
« no previous file with comments | « third_party/WebKit/Source/modules/sensor/Sensor.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698