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

Side by Side Diff: client/dom/generated/src/frog/DOMApplicationCache.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
« no previous file with comments | « client/dom/frog/dom_frog.dart ('k') | client/dom/generated/src/frog/DOMWindow.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 DOMApplicationCacheJs extends DOMTypeJs implements DOMApplicationCache nat ive "*DOMApplicationCache" { 2 class DOMApplicationCacheJs extends DOMTypeJs implements DOMApplicationCache nat ive "*DOMApplicationCache" {
3 3
4 static final int CHECKING = 2; 4 static final int CHECKING = 2;
5 5
6 static final int DOWNLOADING = 3; 6 static final int DOWNLOADING = 3;
7 7
8 static final int IDLE = 1; 8 static final int IDLE = 1;
9 9
10 static final int OBSOLETE = 5; 10 static final int OBSOLETE = 5;
11 11
12 static final int UNCACHED = 0; 12 static final int UNCACHED = 0;
13 13
14 static final int UPDATEREADY = 4; 14 static final int UPDATEREADY = 4;
15 15
16 int get status() native "return this.status;"; 16 int get status() native "return this.status;";
17 17
18 void abort() native;
19
18 void addEventListener(String type, EventListener listener, [bool useCapture = null]) native; 20 void addEventListener(String type, EventListener listener, [bool useCapture = null]) native;
19 21
20 bool dispatchEvent(EventJs evt) native; 22 bool dispatchEvent(EventJs evt) native;
21 23
22 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native; 24 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native;
23 25
24 void swapCache() native; 26 void swapCache() native;
25 27
26 void update() native; 28 void update() native;
27 } 29 }
OLDNEW
« no previous file with comments | « client/dom/frog/dom_frog.dart ('k') | client/dom/generated/src/frog/DOMWindow.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698