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

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

Issue 9264057: Refresh dart:dom libraries from WebKit (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: CR changes Created 8 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 1
2 class DOMWindowJs extends DOMTypeJs implements DOMWindow native "@*DOMWindow" { 2 class DOMWindowJs extends DOMTypeJs implements 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 DOMApplicationCacheJs get applicationCache() native "return this.applicationCa che;"; 8 DOMApplicationCacheJs get applicationCache() native "return this.applicationCa che;";
9 9
10 NavigatorJs get clientInformation() native "return this.clientInformation;"; 10 NavigatorJs get clientInformation() native "return this.clientInformation;";
(...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after
214 MediaQueryListJs matchMedia(String query) native; 214 MediaQueryListJs matchMedia(String query) native;
215 215
216 void moveBy(num x, num y) native; 216 void moveBy(num x, num y) native;
217 217
218 void moveTo(num x, num y) native; 218 void moveTo(num x, num y) native;
219 219
220 DOMWindowJs open(String url, String name, [String options = null]) native; 220 DOMWindowJs open(String url, String name, [String options = null]) native;
221 221
222 DatabaseJs openDatabase(String name, String version, String displayName, int e stimatedSize, [DatabaseCallback creationCallback = null]) native; 222 DatabaseJs openDatabase(String name, String version, String displayName, int e stimatedSize, [DatabaseCallback creationCallback = null]) native;
223 223
224 void postMessage(String message, String targetOrigin, [List messagePorts = nul l]) native; 224 void postMessage(Dynamic message, String targetOrigin, [List messagePorts = nu ll]) native;
225 225
226 void print() native; 226 void print() native;
227 227
228 String prompt(String message, String defaultValue) native; 228 String prompt(String message, String defaultValue) native;
229 229
230 void releaseEvents() native; 230 void releaseEvents() native;
231 231
232 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native; 232 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native;
233 233
234 void resizeBy(num x, num y) native; 234 void resizeBy(num x, num y) native;
(...skipping 15 matching lines...) Expand all
250 void stop() native; 250 void stop() native;
251 251
252 void webkitCancelAnimationFrame(int id) native; 252 void webkitCancelAnimationFrame(int id) native;
253 253
254 void webkitCancelRequestAnimationFrame(int id) native; 254 void webkitCancelRequestAnimationFrame(int id) native;
255 255
256 WebKitPointJs webkitConvertPointFromNodeToPage(NodeJs node, WebKitPointJs p) n ative; 256 WebKitPointJs webkitConvertPointFromNodeToPage(NodeJs node, WebKitPointJs p) n ative;
257 257
258 WebKitPointJs webkitConvertPointFromPageToNode(NodeJs node, WebKitPointJs p) n ative; 258 WebKitPointJs webkitConvertPointFromPageToNode(NodeJs node, WebKitPointJs p) n ative;
259 259
260 void webkitPostMessage(String message, String targetOrigin, [List transferList = null]) native; 260 void webkitPostMessage(Dynamic message, String targetOrigin, [List transferLis t = null]) native;
261 261
262 int webkitRequestAnimationFrame(RequestAnimationFrameCallback callback, Elemen tJs element) native; 262 int webkitRequestAnimationFrame(RequestAnimationFrameCallback callback, Elemen tJs element) native;
263 263
264 void webkitRequestFileSystem(int type, int size, FileSystemCallback successCal lback, [ErrorCallback errorCallback = null]) native; 264 void webkitRequestFileSystem(int type, int size, FileSystemCallback successCal lback, [ErrorCallback errorCallback = null]) native;
265 265
266 void webkitResolveLocalFileSystemURL(String url, [EntryCallback successCallbac k = null, ErrorCallback errorCallback = null]) native; 266 void webkitResolveLocalFileSystemURL(String url, [EntryCallback successCallbac k = null, ErrorCallback errorCallback = null]) native;
267 } 267 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/DOMApplicationCache.dart ('k') | client/dom/generated/src/frog/DataTransferItemList.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698