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

Side by Side Diff: client/dom/generated/src/interface/SVGPreserveAspectRatio.dart

Issue 9341007: Use 'field' syntax in dart:dom interfaces. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: merge 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 // 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 SVGPreserveAspectRatio { 7 interface SVGPreserveAspectRatio {
8 8
9 static final int SVG_MEETORSLICE_MEET = 1; 9 static final int SVG_MEETORSLICE_MEET = 1;
10 10
(...skipping 16 matching lines...) Expand all
27 static final int SVG_PRESERVEASPECTRATIO_XMIDYMID = 6; 27 static final int SVG_PRESERVEASPECTRATIO_XMIDYMID = 6;
28 28
29 static final int SVG_PRESERVEASPECTRATIO_XMIDYMIN = 3; 29 static final int SVG_PRESERVEASPECTRATIO_XMIDYMIN = 3;
30 30
31 static final int SVG_PRESERVEASPECTRATIO_XMINYMAX = 8; 31 static final int SVG_PRESERVEASPECTRATIO_XMINYMAX = 8;
32 32
33 static final int SVG_PRESERVEASPECTRATIO_XMINYMID = 5; 33 static final int SVG_PRESERVEASPECTRATIO_XMINYMID = 5;
34 34
35 static final int SVG_PRESERVEASPECTRATIO_XMINYMIN = 2; 35 static final int SVG_PRESERVEASPECTRATIO_XMINYMIN = 2;
36 36
37 int get align(); 37 int align;
38 38
39 void set align(int value); 39 int meetOrSlice;
40
41 int get meetOrSlice();
42
43 void set meetOrSlice(int value);
44 } 40 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698