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

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

Issue 9422008: Regenerate frog dom (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: merge 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/generated/src/frog/DOMURL.dart ('k') | client/dom/generated/src/frog/Element.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 _DOMWindowJs extends _EventTargetJs implements DOMWindow native "@*DOMWind ow" { 2 class _DOMWindowJs extends _EventTargetJs implements DOMWindow native "@*DOMWind ow" {
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 final _DOMApplicationCacheJs applicationCache; 8 final _DOMApplicationCacheJs applicationCache;
9 9
10 _NavigatorJs clientInformation; 10 final _NavigatorJs clientInformation;
11 11
12 final bool closed; 12 final bool closed;
13 13
14 _ConsoleJs console; 14 final _ConsoleJs console;
15 15
16 final _CryptoJs crypto; 16 final _CryptoJs crypto;
17 17
18 String defaultStatus; 18 String defaultStatus;
19 19
20 String defaultstatus; 20 String defaultstatus;
21 21
22 num devicePixelRatio; 22 final num devicePixelRatio;
23 23
24 final _DocumentJs document; 24 final _DocumentJs document;
25 25
26 _EventJs event; 26 final _EventJs event;
27 27
28 final _ElementJs frameElement; 28 final _ElementJs frameElement;
29 29
30 _DOMWindowJs frames; 30 final _DOMWindowJs frames;
31 31
32 _HistoryJs history; 32 final _HistoryJs history;
33 33
34 int innerHeight; 34 final int innerHeight;
35 35
36 int innerWidth; 36 final int innerWidth;
37 37
38 int length; 38 final int length;
39 39
40 final _StorageJs localStorage; 40 final _StorageJs localStorage;
41 41
42 _LocationJs location; 42 _LocationJs location;
43 43
44 _BarInfoJs locationbar; 44 final _BarInfoJs locationbar;
45 45
46 _BarInfoJs menubar; 46 final _BarInfoJs menubar;
47 47
48 String name; 48 String name;
49 49
50 _NavigatorJs navigator; 50 final _NavigatorJs navigator;
51 51
52 bool offscreenBuffering; 52 final bool offscreenBuffering;
53 53
54 _DOMWindowJs opener; 54 final _DOMWindowJs opener;
55 55
56 int outerHeight; 56 final int outerHeight;
57 57
58 int outerWidth; 58 final int outerWidth;
59 59
60 final int pageXOffset; 60 final int pageXOffset;
61 61
62 final int pageYOffset; 62 final int pageYOffset;
63 63
64 _DOMWindowJs parent; 64 final _DOMWindowJs parent;
65 65
66 _PerformanceJs performance; 66 final _PerformanceJs performance;
67 67
68 _BarInfoJs personalbar; 68 final _BarInfoJs personalbar;
69 69
70 _ScreenJs screen; 70 final _ScreenJs screen;
71 71
72 int screenLeft; 72 final int screenLeft;
73 73
74 int screenTop; 74 final int screenTop;
75 75
76 int screenX; 76 final int screenX;
77 77
78 int screenY; 78 final int screenY;
79 79
80 int scrollX; 80 final int scrollX;
81 81
82 int scrollY; 82 final int scrollY;
83 83
84 _BarInfoJs scrollbars; 84 final _BarInfoJs scrollbars;
85 85
86 _DOMWindowJs self; 86 final _DOMWindowJs self;
87 87
88 final _StorageJs sessionStorage; 88 final _StorageJs sessionStorage;
89 89
90 String status; 90 String status;
91 91
92 _BarInfoJs statusbar; 92 final _BarInfoJs statusbar;
93 93
94 final _StyleMediaJs styleMedia; 94 final _StyleMediaJs styleMedia;
95 95
96 _BarInfoJs toolbar; 96 final _BarInfoJs toolbar;
97 97
98 _DOMWindowJs top; 98 final _DOMWindowJs top;
99 99
100 final _IDBFactoryJs webkitIndexedDB; 100 final _IDBFactoryJs webkitIndexedDB;
101 101
102 final _NotificationCenterJs webkitNotifications; 102 final _NotificationCenterJs webkitNotifications;
103 103
104 final _StorageInfoJs webkitStorageInfo; 104 final _StorageInfoJs webkitStorageInfo;
105 105
106 final _DOMURLJs webkitURL;
107
108 final _DOMWindowJs window; 106 final _DOMWindowJs window;
109 107
110 void addEventListener(String type, EventListener listener, [bool useCapture = null]) native; 108 void addEventListener(String type, EventListener listener, [bool useCapture = null]) native;
111 109
112 void alert(String message) native; 110 void alert(String message) native;
113 111
114 String atob(String string) native; 112 String atob(String string) native;
115 113
116 void blur() native; 114 void blur() native;
117 115
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
186 _WebKitPointJs webkitConvertPointFromPageToNode(_NodeJs node, _WebKitPointJs p ) native; 184 _WebKitPointJs webkitConvertPointFromPageToNode(_NodeJs node, _WebKitPointJs p ) native;
187 185
188 void webkitPostMessage(Dynamic message, String targetOrigin, [List transferLis t = null]) native; 186 void webkitPostMessage(Dynamic message, String targetOrigin, [List transferLis t = null]) native;
189 187
190 int webkitRequestAnimationFrame(RequestAnimationFrameCallback callback, _Eleme ntJs element) native; 188 int webkitRequestAnimationFrame(RequestAnimationFrameCallback callback, _Eleme ntJs element) native;
191 189
192 void webkitRequestFileSystem(int type, int size, FileSystemCallback successCal lback, [ErrorCallback errorCallback = null]) native; 190 void webkitRequestFileSystem(int type, int size, FileSystemCallback successCal lback, [ErrorCallback errorCallback = null]) native;
193 191
194 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;
195 } 193 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/DOMURL.dart ('k') | client/dom/generated/src/frog/Element.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698