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

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

Issue 9312003: Use fields in hidden native DOM classes instead of getters/setters. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Also fix native 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 _WorkerLocationJs extends _DOMTypeJs implements WorkerLocation native "*Wo rkerLocation" { 2 class _WorkerLocationJs extends _DOMTypeJs implements WorkerLocation native "*Wo rkerLocation" {
3 3
4 String get hash() native "return this.hash;"; 4 final String hash;
5 5
6 String get host() native "return this.host;"; 6 final String host;
7 7
8 String get hostname() native "return this.hostname;"; 8 final String hostname;
9 9
10 String get href() native "return this.href;"; 10 final String href;
11 11
12 String get pathname() native "return this.pathname;"; 12 final String pathname;
13 13
14 String get port() native "return this.port;"; 14 final String port;
15 15
16 String get protocol() native "return this.protocol;"; 16 final String protocol;
17 17
18 String get search() native "return this.search;"; 18 final String search;
19 19
20 String toString() native; 20 String toString() native;
21 } 21 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698