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

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

Issue 9271031: Make DOMType the root of DOM implementation types. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: x 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 WorkerLocationJS implements WorkerLocation native "*WorkerLocation" { 2 class WorkerLocationJs extends DOMTypeJs implements WorkerLocation native "*Work erLocation" {
3 3
4 String get hash() native "return this.hash;"; 4 String get hash() native "return this.hash;";
5 5
6 String get host() native "return this.host;"; 6 String get host() native "return this.host;";
7 7
8 String get hostname() native "return this.hostname;"; 8 String get hostname() native "return this.hostname;";
9 9
10 String get href() native "return this.href;"; 10 String get href() native "return this.href;";
11 11
12 String get pathname() native "return this.pathname;"; 12 String get pathname() native "return this.pathname;";
13 13
14 String get port() native "return this.port;"; 14 String get port() native "return this.port;";
15 15
16 String get protocol() native "return this.protocol;"; 16 String get protocol() native "return this.protocol;";
17 17
18 String get search() native "return this.search;"; 18 String get search() native "return this.search;";
19 19
20 String toString() native; 20 String toString() native;
21
22 var dartObjectLocalStorage;
23
24 String get typeName() native;
25 } 21 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/WorkerContext.dart ('k') | client/dom/generated/src/frog/WorkerNavigator.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698