Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 // WARNING: Do not edit - generated code. | 5 // WARNING: Do not edit - generated code. |
| 6 | 6 |
| 7 interface CSSTransformValue extends CSSValueList { | 7 interface CSSTransformValue extends CSSValueList { |
| 8 | 8 |
| 9 static final int CSS_MATRIX = 11; | |
|
sra1
2011/12/07 09:51:15
Where did these go?
| |
| 10 | |
| 11 static final int CSS_MATRIX3D = 21; | |
| 12 | |
| 13 static final int CSS_PERSPECTIVE = 20; | |
| 14 | |
| 15 static final int CSS_ROTATE = 4; | |
| 16 | |
| 17 static final int CSS_ROTATE3D = 17; | |
| 18 | |
| 19 static final int CSS_ROTATEX = 14; | |
| 20 | |
| 21 static final int CSS_ROTATEY = 15; | |
| 22 | |
| 23 static final int CSS_ROTATEZ = 16; | |
| 24 | |
| 25 static final int CSS_SCALE = 5; | |
| 26 | |
| 27 static final int CSS_SCALE3D = 19; | |
| 28 | |
| 29 static final int CSS_SCALEX = 6; | |
| 30 | |
| 31 static final int CSS_SCALEY = 7; | |
| 32 | |
| 33 static final int CSS_SCALEZ = 18; | |
| 34 | |
| 35 static final int CSS_SKEW = 8; | |
| 36 | |
| 37 static final int CSS_SKEWX = 9; | |
| 38 | |
| 39 static final int CSS_SKEWY = 10; | |
| 40 | |
| 41 static final int CSS_TRANSLATE = 1; | |
| 42 | |
| 43 static final int CSS_TRANSLATE3D = 13; | |
| 44 | |
| 45 static final int CSS_TRANSLATEX = 2; | |
| 46 | |
| 47 static final int CSS_TRANSLATEY = 3; | |
| 48 | |
| 49 static final int CSS_TRANSLATEZ = 12; | |
| 50 | |
| 51 int get operationType(); | 9 int get operationType(); |
| 52 } | 10 } |
| OLD | NEW |