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

Side by Side Diff: client/dom/generated/src/frog/WebKitCSSFilterValue.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 _WebKitCSSFilterValueJs extends _CSSValueListJs implements WebKitCSSFilter Value native "*WebKitCSSFilterValue" { 2 class _WebKitCSSFilterValueJs extends _CSSValueListJs implements WebKitCSSFilter Value native "*WebKitCSSFilterValue" {
3 3
4 static final int CSS_FILTER_BLUR = 10; 4 static final int CSS_FILTER_BLUR = 10;
5 5
6 static final int CSS_FILTER_BRIGHTNESS = 8; 6 static final int CSS_FILTER_BRIGHTNESS = 8;
7 7
8 static final int CSS_FILTER_CONTRAST = 9; 8 static final int CSS_FILTER_CONTRAST = 9;
9 9
10 static final int CSS_FILTER_DROP_SHADOW = 11; 10 static final int CSS_FILTER_DROP_SHADOW = 11;
11 11
12 static final int CSS_FILTER_GRAYSCALE = 2; 12 static final int CSS_FILTER_GRAYSCALE = 2;
13 13
14 static final int CSS_FILTER_HUE_ROTATE = 5; 14 static final int CSS_FILTER_HUE_ROTATE = 5;
15 15
16 static final int CSS_FILTER_INVERT = 6; 16 static final int CSS_FILTER_INVERT = 6;
17 17
18 static final int CSS_FILTER_OPACITY = 7; 18 static final int CSS_FILTER_OPACITY = 7;
19 19
20 static final int CSS_FILTER_REFERENCE = 1; 20 static final int CSS_FILTER_REFERENCE = 1;
21 21
22 static final int CSS_FILTER_SATURATE = 4; 22 static final int CSS_FILTER_SATURATE = 4;
23 23
24 static final int CSS_FILTER_SEPIA = 3; 24 static final int CSS_FILTER_SEPIA = 3;
25 25
26 int get operationType() native "return this.operationType;"; 26 final int operationType;
27 } 27 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698