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

Side by Side Diff: client/dom/generated/src/frog/DOMException.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 DOMExceptionJS implements DOMException native "*DOMException" { 2 class DOMExceptionJs extends DOMTypeJs implements DOMException native "*DOMExcep tion" {
3 3
4 static final int ABORT_ERR = 20; 4 static final int ABORT_ERR = 20;
5 5
6 static final int DATA_CLONE_ERR = 25; 6 static final int DATA_CLONE_ERR = 25;
7 7
8 static final int DOMSTRING_SIZE_ERR = 2; 8 static final int DOMSTRING_SIZE_ERR = 2;
9 9
10 static final int HIERARCHY_REQUEST_ERR = 3; 10 static final int HIERARCHY_REQUEST_ERR = 3;
11 11
12 static final int INDEX_SIZE_ERR = 1; 12 static final int INDEX_SIZE_ERR = 1;
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 51
52 static final int WRONG_DOCUMENT_ERR = 4; 52 static final int WRONG_DOCUMENT_ERR = 4;
53 53
54 int get code() native "return this.code;"; 54 int get code() native "return this.code;";
55 55
56 String get message() native "return this.message;"; 56 String get message() native "return this.message;";
57 57
58 String get name() native "return this.name;"; 58 String get name() native "return this.name;";
59 59
60 String toString() native; 60 String toString() native;
61
62 var dartObjectLocalStorage;
63
64 String get typeName() native;
65 } 61 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/DOMApplicationCache.dart ('k') | client/dom/generated/src/frog/DOMFileSystem.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698