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

Side by Side Diff: client/html/generated/html/interface/SVGPathSeg.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 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
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.
4
5 // WARNING: Do not edit - generated code.
6
7 interface SVGPathSeg {
8
9 static final int PATHSEG_ARC_ABS = 10;
10
11 static final int PATHSEG_ARC_REL = 11;
12
13 static final int PATHSEG_CLOSEPATH = 1;
14
15 static final int PATHSEG_CURVETO_CUBIC_ABS = 6;
16
17 static final int PATHSEG_CURVETO_CUBIC_REL = 7;
18
19 static final int PATHSEG_CURVETO_CUBIC_SMOOTH_ABS = 16;
20
21 static final int PATHSEG_CURVETO_CUBIC_SMOOTH_REL = 17;
22
23 static final int PATHSEG_CURVETO_QUADRATIC_ABS = 8;
24
25 static final int PATHSEG_CURVETO_QUADRATIC_REL = 9;
26
27 static final int PATHSEG_CURVETO_QUADRATIC_SMOOTH_ABS = 18;
28
29 static final int PATHSEG_CURVETO_QUADRATIC_SMOOTH_REL = 19;
30
31 static final int PATHSEG_LINETO_ABS = 4;
32
33 static final int PATHSEG_LINETO_HORIZONTAL_ABS = 12;
34
35 static final int PATHSEG_LINETO_HORIZONTAL_REL = 13;
36
37 static final int PATHSEG_LINETO_REL = 5;
38
39 static final int PATHSEG_LINETO_VERTICAL_ABS = 14;
40
41 static final int PATHSEG_LINETO_VERTICAL_REL = 15;
42
43 static final int PATHSEG_MOVETO_ABS = 2;
44
45 static final int PATHSEG_MOVETO_REL = 3;
46
47 static final int PATHSEG_UNKNOWN = 0;
48
49 final int pathSegType;
50
51 final String pathSegTypeAsLetter;
52 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698