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

Unified Diff: Source/modules/geolocation/Geolocation.idl

Issue 745503002: Replace Dictionary with PositionOptions in geolocation/. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 1 month 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: Source/modules/geolocation/Geolocation.idl
diff --git a/Source/modules/geolocation/Geolocation.idl b/Source/modules/geolocation/Geolocation.idl
index 2c9c1f8a04aac97afc4760f85abde02f30ceb691..19618453b00aca471c03a51f2f7b102af542e1e4 100644
--- a/Source/modules/geolocation/Geolocation.idl
+++ b/Source/modules/geolocation/Geolocation.idl
@@ -28,15 +28,13 @@
GarbageCollected,
NoInterfaceObject,
] interface Geolocation {
- // FIXME: should be: PositionOptions options: need PositionOptions.idl and dictionary http:/crbug.com/321462
[LogActivity] void getCurrentPosition(PositionCallback successCallback,
optional PositionErrorCallback errorCallback,
- optional Dictionary options);
+ optional PositionOptions options);
- // FIXME: should be: PositionOptions options: need PositionOptions.idl and dictionary http:/crbug.com/321462
[LogActivity] long watchPosition(PositionCallback successCallback,
optional PositionErrorCallback errorCallback,
- optional Dictionary options);
+ optional PositionOptions options);
void clearWatch(long watchID);
};

Powered by Google App Engine
This is Rietveld 408576698