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

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

Issue 8879007: Enable fullscreen API and file system API (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 9 years 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 | « client/dom/generated/monkey_dom_externs.js ('k') | client/dom/generated/src/frog/Document.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 1
2 class DOMWindow native "@*DOMWindow" { 2 class DOMWindow native "@*DOMWindow" {
3 3
4 static final int PERSISTENT = 1;
5
6 static final int TEMPORARY = 0;
7
4 DOMApplicationCache applicationCache; 8 DOMApplicationCache applicationCache;
5 9
6 Navigator clientInformation; 10 Navigator clientInformation;
7 11
8 bool closed; 12 bool closed;
9 13
10 Console console; 14 Console console;
11 15
12 Crypto crypto; 16 Crypto crypto;
13 17
(...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after
170 void webkitCancelRequestAnimationFrame(int id) native; 174 void webkitCancelRequestAnimationFrame(int id) native;
171 175
172 WebKitPoint webkitConvertPointFromNodeToPage(Node node, WebKitPoint p) native; 176 WebKitPoint webkitConvertPointFromNodeToPage(Node node, WebKitPoint p) native;
173 177
174 WebKitPoint webkitConvertPointFromPageToNode(Node node, WebKitPoint p) native; 178 WebKitPoint webkitConvertPointFromPageToNode(Node node, WebKitPoint p) native;
175 179
176 void webkitPostMessage(String message, var targetOrigin_OR_transferList, [Stri ng targetOrigin = null]) native; 180 void webkitPostMessage(String message, var targetOrigin_OR_transferList, [Stri ng targetOrigin = null]) native;
177 181
178 int webkitRequestAnimationFrame(RequestAnimationFrameCallback callback, Elemen t element) native; 182 int webkitRequestAnimationFrame(RequestAnimationFrameCallback callback, Elemen t element) native;
179 183
184 void webkitRequestFileSystem(int type, int size, [FileSystemCallback successCa llback = null, ErrorCallback errorCallback = null]) native;
185
186 void webkitResolveLocalFileSystemURL(String url, [EntryCallback successCallbac k = null, ErrorCallback errorCallback = null]) native;
187
180 var dartObjectLocalStorage; 188 var dartObjectLocalStorage;
181 189
182 String get typeName() native; 190 String get typeName() native;
183 } 191 }
OLDNEW
« no previous file with comments | « client/dom/generated/monkey_dom_externs.js ('k') | client/dom/generated/src/frog/Document.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698