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

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

Issue 9317046: Make dart:dom implementation types private so they don't muddle the docs. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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
OLDNEW
1 1
2 class NavigatorJs extends DOMTypeJs implements Navigator native "*Navigator" { 2 class _NavigatorJs extends _DOMTypeJs implements Navigator native "*Navigator" {
3 3
4 String get appCodeName() native "return this.appCodeName;"; 4 String get appCodeName() native "return this.appCodeName;";
5 5
6 String get appName() native "return this.appName;"; 6 String get appName() native "return this.appName;";
7 7
8 String get appVersion() native "return this.appVersion;"; 8 String get appVersion() native "return this.appVersion;";
9 9
10 bool get cookieEnabled() native "return this.cookieEnabled;"; 10 bool get cookieEnabled() native "return this.cookieEnabled;";
11 11
12 GeolocationJs get geolocation() native "return this.geolocation;"; 12 _GeolocationJs get geolocation() native "return this.geolocation;";
13 13
14 String get language() native "return this.language;"; 14 String get language() native "return this.language;";
15 15
16 DOMMimeTypeArrayJs get mimeTypes() native "return this.mimeTypes;"; 16 _DOMMimeTypeArrayJs get mimeTypes() native "return this.mimeTypes;";
17 17
18 bool get onLine() native "return this.onLine;"; 18 bool get onLine() native "return this.onLine;";
19 19
20 String get platform() native "return this.platform;"; 20 String get platform() native "return this.platform;";
21 21
22 DOMPluginArrayJs get plugins() native "return this.plugins;"; 22 _DOMPluginArrayJs get plugins() native "return this.plugins;";
23 23
24 String get product() native "return this.product;"; 24 String get product() native "return this.product;";
25 25
26 String get productSub() native "return this.productSub;"; 26 String get productSub() native "return this.productSub;";
27 27
28 String get userAgent() native "return this.userAgent;"; 28 String get userAgent() native "return this.userAgent;";
29 29
30 String get vendor() native "return this.vendor;"; 30 String get vendor() native "return this.vendor;";
31 31
32 String get vendorSub() native "return this.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 }
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