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

Side by Side Diff: lib/dom/dom.dart

Issue 10483004: Add PositionOptions type to registry. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 6 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | lib/dom/frog/dom_frog.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #library('dom'); 1 #library('dom');
2 2
3 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
4 // for details. All rights reserved. Use of this source code is governed by a 4 // for details. All rights reserved. Use of this source code is governed by a
5 // BSD-style license that can be found in the LICENSE file. 5 // BSD-style license that can be found in the LICENSE file.
6 6
7 // DO NOT EDIT 7 // DO NOT EDIT
8 // Auto-generated Dart DOM library with no implementation. 8 // Auto-generated Dart DOM library with no implementation.
9 9
10 10
(...skipping 3124 matching lines...) Expand 10 before | Expand all | Expand 10 after
3135 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3135 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3136 // for details. All rights reserved. Use of this source code is governed by a 3136 // for details. All rights reserved. Use of this source code is governed by a
3137 // BSD-style license that can be found in the LICENSE file. 3137 // BSD-style license that can be found in the LICENSE file.
3138 3138
3139 // WARNING: Do not edit - generated code. 3139 // WARNING: Do not edit - generated code.
3140 3140
3141 interface Geolocation { 3141 interface Geolocation {
3142 3142
3143 void clearWatch(int watchId); 3143 void clearWatch(int watchId);
3144 3144
3145 void getCurrentPosition(PositionCallback successCallback, [PositionErrorCallba ck errorCallback]); 3145 void getCurrentPosition(PositionCallback successCallback, [PositionErrorCallba ck errorCallback, Object options]);
3146 3146
3147 int watchPosition(PositionCallback successCallback, [PositionErrorCallback err orCallback]); 3147 int watchPosition(PositionCallback successCallback, [PositionErrorCallback err orCallback, Object options]);
3148 } 3148 }
3149 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 3149 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
3150 // for details. All rights reserved. Use of this source code is governed by a 3150 // for details. All rights reserved. Use of this source code is governed by a
3151 // BSD-style license that can be found in the LICENSE file. 3151 // BSD-style license that can be found in the LICENSE file.
3152 3152
3153 // WARNING: Do not edit - generated code. 3153 // WARNING: Do not edit - generated code.
3154 3154
3155 interface Geoposition { 3155 interface Geoposition {
3156 3156
3157 final Coordinates coords; 3157 final Coordinates coords;
(...skipping 9797 matching lines...) Expand 10 before | Expand all | Expand 10 after
12955 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 12955 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
12956 // for details. All rights reserved. Use of this source code is governed by a 12956 // for details. All rights reserved. Use of this source code is governed by a
12957 // BSD-style license that can be found in the LICENSE file. 12957 // BSD-style license that can be found in the LICENSE file.
12958 12958
12959 Window get window() => _dummy(); 12959 Window get window() => _dummy();
12960 12960
12961 // TODO(vsm): Remove when prefixes are supported. 12961 // TODO(vsm): Remove when prefixes are supported.
12962 Window get dom_window() => _dummy(); 12962 Window get dom_window() => _dummy();
12963 12963
12964 Document get document() => _dummy(); 12964 Document get document() => _dummy();
OLDNEW
« no previous file with comments | « no previous file | lib/dom/frog/dom_frog.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698