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

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

Issue 9312003: Use fields in hidden native DOM classes instead of getters/setters. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Also fix native Created 8 years, 10 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 _SQLErrorJs extends _DOMTypeJs implements SQLError native "*SQLError" { 2 class _SQLErrorJs extends _DOMTypeJs implements SQLError native "*SQLError" {
3 3
4 static final int CONSTRAINT_ERR = 6; 4 static final int CONSTRAINT_ERR = 6;
5 5
6 static final int DATABASE_ERR = 1; 6 static final int DATABASE_ERR = 1;
7 7
8 static final int QUOTA_ERR = 4; 8 static final int QUOTA_ERR = 4;
9 9
10 static final int SYNTAX_ERR = 5; 10 static final int SYNTAX_ERR = 5;
11 11
12 static final int TIMEOUT_ERR = 7; 12 static final int TIMEOUT_ERR = 7;
13 13
14 static final int TOO_LARGE_ERR = 3; 14 static final int TOO_LARGE_ERR = 3;
15 15
16 static final int UNKNOWN_ERR = 0; 16 static final int UNKNOWN_ERR = 0;
17 17
18 static final int VERSION_ERR = 2; 18 static final int VERSION_ERR = 2;
19 19
20 int get code() native "return this.code;"; 20 final int code;
21 21
22 String get message() native "return this.message;"; 22 final String message;
23 } 23 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698