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

Side by Side Diff: client/dom/generated/src/frog/DOMWindow.dart

Issue 9084005: Refresh dart:dom (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 11 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
OLDNEW
1 1
2 class DOMWindow native "@*DOMWindow" { 2 class DOMWindow native "@*DOMWindow" {
3 3
4 static final int PERSISTENT = 1; 4 static final int PERSISTENT = 1;
5 5
6 static final int TEMPORARY = 0; 6 static final int TEMPORARY = 0;
7 7
8 DOMApplicationCache applicationCache; 8 DOMApplicationCache applicationCache;
9 9
10 Navigator clientInformation; 10 Navigator clientInformation;
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
142 MediaQueryList matchMedia(String query) native; 142 MediaQueryList matchMedia(String query) native;
143 143
144 void moveBy(num x, num y) native; 144 void moveBy(num x, num y) native;
145 145
146 void moveTo(num x, num y) native; 146 void moveTo(num x, num y) native;
147 147
148 DOMWindow open(String url, String name, [String options = null]) native; 148 DOMWindow open(String url, String name, [String options = null]) native;
149 149
150 Database openDatabase(String name, String version, String displayName, int est imatedSize, [DatabaseCallback creationCallback = null]) native; 150 Database openDatabase(String name, String version, String displayName, int est imatedSize, [DatabaseCallback creationCallback = null]) native;
151 151
152 void postMessage(String message, var messagePorts_OR_targetOrigin, [String tar getOrigin = null]) native; 152 void postMessage(String message, String targetOrigin, [List messagePorts = nul l]) native;
153 153
154 void print() native; 154 void print() native;
155 155
156 String prompt(String message, String defaultValue) native; 156 String prompt(String message, String defaultValue) native;
157 157
158 void releaseEvents() native; 158 void releaseEvents() native;
159 159
160 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native; 160 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native;
161 161
162 void resizeBy(num x, num y) native; 162 void resizeBy(num x, num y) native;
163 163
164 void resizeTo(num width, num height) native; 164 void resizeTo(num width, num height) native;
165 165
166 void scroll(int x, int y) native; 166 void scroll(int x, int y) native;
167 167
168 void scrollBy(int x, int y) native; 168 void scrollBy(int x, int y) native;
169 169
170 void scrollTo(int x, int y) native; 170 void scrollTo(int x, int y) native;
171 171
172 int setInterval(TimeoutHandler handler, int timeout) native; 172 int setInterval(TimeoutHandler handler, int timeout) native;
173 173
174 int setTimeout(TimeoutHandler handler, int timeout) native; 174 int setTimeout(TimeoutHandler handler, int timeout) native;
175 175
176 Object showModalDialog(String url, [Object dialogArgs = null, String featureAr gs = null]) native; 176 Object showModalDialog(String url, [Object dialogArgs = null, String featureAr gs = null]) native;
177 177
178 void stop() native; 178 void stop() native;
179 179
180 void webkitCancelAnimationFrame(int id) native;
181
180 void webkitCancelRequestAnimationFrame(int id) native; 182 void webkitCancelRequestAnimationFrame(int id) native;
181 183
182 WebKitPoint webkitConvertPointFromNodeToPage(Node node, WebKitPoint p) native; 184 WebKitPoint webkitConvertPointFromNodeToPage(Node node, WebKitPoint p) native;
183 185
184 WebKitPoint webkitConvertPointFromPageToNode(Node node, WebKitPoint p) native; 186 WebKitPoint webkitConvertPointFromPageToNode(Node node, WebKitPoint p) native;
185 187
186 void webkitPostMessage(String message, var targetOrigin_OR_transferList, [Stri ng targetOrigin = null]) native; 188 void webkitPostMessage(String message, String targetOrigin, [List transferList = null]) native;
187 189
188 int webkitRequestAnimationFrame(RequestAnimationFrameCallback callback, Elemen t element) native; 190 int webkitRequestAnimationFrame(RequestAnimationFrameCallback callback, Elemen t element) native;
189 191
190 void webkitRequestFileSystem(int type, int size, [FileSystemCallback successCa llback = null, ErrorCallback errorCallback = null]) native; 192 void webkitRequestFileSystem(int type, int size, FileSystemCallback successCal lback, [ErrorCallback errorCallback = null]) native;
191 193
192 void webkitResolveLocalFileSystemURL(String url, [EntryCallback successCallbac k = null, ErrorCallback errorCallback = null]) native; 194 void webkitResolveLocalFileSystemURL(String url, [EntryCallback successCallbac k = null, ErrorCallback errorCallback = null]) native;
193 195
194 var dartObjectLocalStorage; 196 var dartObjectLocalStorage;
195 197
196 String get typeName() native; 198 String get typeName() native;
197 } 199 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/CloseEvent.dart ('k') | client/dom/generated/src/frog/DatabaseSync.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698