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

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

Issue 9303011: Implement WebKit IDL 'module' feature [Supplemental=Foo] (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: manual fix 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 201 matching lines...) Expand 10 before | Expand all | Expand 10 after
212 DOMSelectionJs getSelection() native; 212 DOMSelectionJs getSelection() native;
213 213
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;
223
222 void postMessage(String message, String targetOrigin, [List messagePorts = nul l]) native; 224 void postMessage(String message, String targetOrigin, [List messagePorts = nul l]) native;
223 225
224 void print() native; 226 void print() native;
225 227
226 String prompt(String message, String defaultValue) native; 228 String prompt(String message, String defaultValue) native;
227 229
228 void releaseEvents() native; 230 void releaseEvents() native;
229 231
230 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native; 232 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native;
231 233
(...skipping 24 matching lines...) Expand all
256 WebKitPointJs webkitConvertPointFromPageToNode(NodeJs node, WebKitPointJs p) n ative; 258 WebKitPointJs webkitConvertPointFromPageToNode(NodeJs node, WebKitPointJs p) n ative;
257 259
258 void webkitPostMessage(String message, String targetOrigin, [List transferList = null]) native; 260 void webkitPostMessage(String message, String targetOrigin, [List transferList = null]) native;
259 261
260 int webkitRequestAnimationFrame(RequestAnimationFrameCallback callback, Elemen tJs element) native; 262 int webkitRequestAnimationFrame(RequestAnimationFrameCallback callback, Elemen tJs element) native;
261 263
262 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;
263 265
264 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;
265 } 267 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698