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

Side by Side Diff: client/html/generated/html/frog/DOMException.dart

Issue 9537001: Generate dart:html bindings for Dartium as well as Frog. All unittests now pass (or are disabled fo… (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 9 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
(Empty)
1
2 class _DOMExceptionImpl implements DOMException native "*DOMException" {
3
4 static final int ABORT_ERR = 20;
5
6 static final int DATA_CLONE_ERR = 25;
7
8 static final int DOMSTRING_SIZE_ERR = 2;
9
10 static final int HIERARCHY_REQUEST_ERR = 3;
11
12 static final int INDEX_SIZE_ERR = 1;
13
14 static final int INUSE_ATTRIBUTE_ERR = 10;
15
16 static final int INVALID_ACCESS_ERR = 15;
17
18 static final int INVALID_CHARACTER_ERR = 5;
19
20 static final int INVALID_MODIFICATION_ERR = 13;
21
22 static final int INVALID_NODE_TYPE_ERR = 24;
23
24 static final int INVALID_STATE_ERR = 11;
25
26 static final int NAMESPACE_ERR = 14;
27
28 static final int NETWORK_ERR = 19;
29
30 static final int NOT_FOUND_ERR = 8;
31
32 static final int NOT_SUPPORTED_ERR = 9;
33
34 static final int NO_DATA_ALLOWED_ERR = 6;
35
36 static final int NO_MODIFICATION_ALLOWED_ERR = 7;
37
38 static final int QUOTA_EXCEEDED_ERR = 22;
39
40 static final int SECURITY_ERR = 18;
41
42 static final int SYNTAX_ERR = 12;
43
44 static final int TIMEOUT_ERR = 23;
45
46 static final int TYPE_MISMATCH_ERR = 17;
47
48 static final int URL_MISMATCH_ERR = 21;
49
50 static final int VALIDATION_ERR = 16;
51
52 static final int WRONG_DOCUMENT_ERR = 4;
53
54 final int code;
55
56 final String message;
57
58 final String name;
59
60 String toString() native;
61 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698