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

Side by Side Diff: client/html/generated/html/frog/SQLError.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 _SQLErrorImpl implements SQLError native "*SQLError" {
3
4 static final int CONSTRAINT_ERR = 6;
5
6 static final int DATABASE_ERR = 1;
7
8 static final int QUOTA_ERR = 4;
9
10 static final int SYNTAX_ERR = 5;
11
12 static final int TIMEOUT_ERR = 7;
13
14 static final int TOO_LARGE_ERR = 3;
15
16 static final int UNKNOWN_ERR = 0;
17
18 static final int VERSION_ERR = 2;
19
20 final int code;
21
22 final String message;
23 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698