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

Side by Side Diff: client/dom/generated/src/interface/WorkerContext.dart

Issue 9103001: Revert "Refresh dart:dom" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 11 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 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 // WARNING: Do not edit - generated code. 5 // WARNING: Do not edit - generated code.
6 6
7 interface WorkerGlobalScope { 7 interface WorkerGlobalScope {
8 8
9 WorkerLocation get location(); 9 WorkerLocation get location();
10 10
11 void set location(WorkerLocation value); 11 void set location(WorkerLocation value);
12 12
13 WorkerNavigator get navigator(); 13 WorkerNavigator get navigator();
14 14
15 void set navigator(WorkerNavigator value); 15 void set navigator(WorkerNavigator value);
16 16
17 EventListener get onerror(); 17 EventListener get onerror();
18 18
19 void set onerror(EventListener value); 19 void set onerror(EventListener value);
20 20
21 WorkerContext get self(); 21 WorkerContext get self();
22 22
23 void set self(WorkerContext value); 23 void set self(WorkerContext value);
24 24
25 IDBFactory get webkitIndexedDB();
26
27 NotificationCenter get webkitNotifications(); 25 NotificationCenter get webkitNotifications();
28 26
29 DOMURL get webkitURL(); 27 DOMURL get webkitURL();
30 28
31 void addEventListener(String type, EventListener listener, [bool useCapture]); 29 void addEventListener(String type, EventListener listener, [bool useCapture]);
32 30
33 void clearInterval(int handle); 31 void clearInterval(int handle);
34 32
35 void clearTimeout(int handle); 33 void clearTimeout(int handle);
36 34
(...skipping 21 matching lines...) Expand all
58 56
59 void webkitResolveLocalFileSystemURL(String url, [EntryCallback successCallbac k, ErrorCallback errorCallback]); 57 void webkitResolveLocalFileSystemURL(String url, [EntryCallback successCallbac k, ErrorCallback errorCallback]);
60 } 58 }
61 59
62 interface WorkerContext extends WorkerGlobalScope { 60 interface WorkerContext extends WorkerGlobalScope {
63 61
64 static final int PERSISTENT = 1; 62 static final int PERSISTENT = 1;
65 63
66 static final int TEMPORARY = 0; 64 static final int TEMPORARY = 0;
67 } 65 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/interface/WebSocket.dart ('k') | client/dom/generated/src/interface/XMLHttpRequest.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698