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

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

Issue 8895013: Add enables consistent with Chrome's WebKit (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Alpha the ENABLEs 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/src/frog/Console.dart ('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; 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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 String status; 90 String status;
91 91
92 BarInfo statusbar; 92 BarInfo statusbar;
93 93
94 StyleMedia styleMedia; 94 StyleMedia styleMedia;
95 95
96 BarInfo toolbar; 96 BarInfo toolbar;
97 97
98 DOMWindow top; 98 DOMWindow top;
99 99
100 IDBFactory webkitIndexedDB;
101
100 NotificationCenter webkitNotifications; 102 NotificationCenter webkitNotifications;
101 103
104 StorageInfo webkitStorageInfo;
105
102 DOMURL webkitURL; 106 DOMURL webkitURL;
103 107
104 DOMWindow window; 108 DOMWindow window;
105 109
106 void addEventListener(String type, EventListener listener, [bool useCapture = null]) native; 110 void addEventListener(String type, EventListener listener, [bool useCapture = null]) native;
107 111
108 void alert(String message) native; 112 void alert(String message) native;
109 113
110 String atob(String string) native; 114 String atob(String string) native;
111 115
(...skipping 24 matching lines...) Expand all
136 DOMSelection getSelection() native; 140 DOMSelection getSelection() native;
137 141
138 MediaQueryList matchMedia(String query) native; 142 MediaQueryList matchMedia(String query) native;
139 143
140 void moveBy(num x, num y) native; 144 void moveBy(num x, num y) native;
141 145
142 void moveTo(num x, num y) native; 146 void moveTo(num x, num y) native;
143 147
144 DOMWindow open(String url, String name, [String options = null]) native; 148 DOMWindow open(String url, String name, [String options = null]) native;
145 149
150 Database openDatabase(String name, String version, String displayName, int est imatedSize, [DatabaseCallback creationCallback = null]) native;
151
146 void postMessage(String message, var messagePorts_OR_targetOrigin, [String tar getOrigin = null]) native; 152 void postMessage(String message, var messagePorts_OR_targetOrigin, [String tar getOrigin = null]) native;
147 153
148 void print() native; 154 void print() native;
149 155
150 String prompt(String message, String defaultValue) native; 156 String prompt(String message, String defaultValue) native;
151 157
152 void releaseEvents() native; 158 void releaseEvents() native;
153 159
154 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native; 160 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native;
155 161
(...skipping 26 matching lines...) Expand all
182 int webkitRequestAnimationFrame(RequestAnimationFrameCallback callback, Elemen t element) native; 188 int webkitRequestAnimationFrame(RequestAnimationFrameCallback callback, Elemen t element) native;
183 189
184 void webkitRequestFileSystem(int type, int size, [FileSystemCallback successCa llback = null, ErrorCallback errorCallback = null]) native; 190 void webkitRequestFileSystem(int type, int size, [FileSystemCallback successCa llback = null, ErrorCallback errorCallback = null]) native;
185 191
186 void webkitResolveLocalFileSystemURL(String url, [EntryCallback successCallbac k = null, ErrorCallback errorCallback = null]) native; 192 void webkitResolveLocalFileSystemURL(String url, [EntryCallback successCallbac k = null, ErrorCallback errorCallback = null]) native;
187 193
188 var dartObjectLocalStorage; 194 var dartObjectLocalStorage;
189 195
190 String get typeName() native; 196 String get typeName() native;
191 } 197 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/Console.dart ('k') | client/dom/generated/src/frog/Document.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698