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

Side by Side Diff: client/dom/generated/src/frog/FileException.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 FileExceptionJS implements FileException native "*FileException" { 2 class FileExceptionJs extends DOMTypeJs implements FileException native "*FileEx ception" {
3 3
4 static final int ABORT_ERR = 3; 4 static final int ABORT_ERR = 3;
5 5
6 static final int ENCODING_ERR = 5; 6 static final int ENCODING_ERR = 5;
7 7
8 static final int INVALID_MODIFICATION_ERR = 9; 8 static final int INVALID_MODIFICATION_ERR = 9;
9 9
10 static final int INVALID_STATE_ERR = 7; 10 static final int INVALID_STATE_ERR = 7;
11 11
12 static final int NOT_FOUND_ERR = 1; 12 static final int NOT_FOUND_ERR = 1;
(...skipping 12 matching lines...) Expand all
25 25
26 static final int TYPE_MISMATCH_ERR = 11; 26 static final int TYPE_MISMATCH_ERR = 11;
27 27
28 int get code() native "return this.code;"; 28 int get code() native "return this.code;";
29 29
30 String get message() native "return this.message;"; 30 String get message() native "return this.message;";
31 31
32 String get name() native "return this.name;"; 32 String get name() native "return this.name;";
33 33
34 String toString() native; 34 String toString() native;
35
36 var dartObjectLocalStorage;
37
38 String get typeName() native;
39 } 35 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/FileError.dart ('k') | client/dom/generated/src/frog/FileList.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698