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

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

Issue 9221006: Move frog dart:dom from fields to getters/setters. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: comment 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 1
2 class Navigator native "*Navigator" { 2 class Navigator native "*Navigator" {
3 3
4 String appCodeName; 4 String get appCodeName() native "return this.appCodeName;";
5 5
6 String appName; 6 String get appName() native "return this.appName;";
7 7
8 String appVersion; 8 String get appVersion() native "return this.appVersion;";
9 9
10 bool cookieEnabled; 10 bool get cookieEnabled() native "return this.cookieEnabled;";
11 11
12 Geolocation geolocation; 12 Geolocation get geolocation() native "return this.geolocation;";
13 13
14 String language; 14 String get language() native "return this.language;";
15 15
16 DOMMimeTypeArray mimeTypes; 16 DOMMimeTypeArray get mimeTypes() native "return this.mimeTypes;";
17 17
18 bool onLine; 18 bool get onLine() native "return this.onLine;";
19 19
20 String platform; 20 String get platform() native "return this.platform;";
21 21
22 DOMPluginArray plugins; 22 DOMPluginArray get plugins() native "return this.plugins;";
23 23
24 String product; 24 String get product() native "return this.product;";
25 25
26 String productSub; 26 String get productSub() native "return this.productSub;";
27 27
28 String userAgent; 28 String get userAgent() native "return this.userAgent;";
29 29
30 String vendor; 30 String get vendor() native "return this.vendor;";
31 31
32 String vendorSub; 32 String get vendorSub() native "return this.vendorSub;";
33 33
34 void getStorageUpdates() native; 34 void getStorageUpdates() native;
35 35
36 bool javaEnabled() native; 36 bool javaEnabled() native;
37 37
38 void registerProtocolHandler(String scheme, String url, String title) native; 38 void registerProtocolHandler(String scheme, String url, String title) native;
39 39
40 var dartObjectLocalStorage; 40 var dartObjectLocalStorage;
41 41
42 String get typeName() native; 42 String get typeName() native;
43 } 43 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/NamedNodeMap.dart ('k') | client/dom/generated/src/frog/Node.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698