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

Side by Side Diff: client/html/generated/html/dartium/SVGFEConvolveMatrixElement.dart

Issue 9600035: Enable new dart:html wrapperless frog bindings and wrapper dartium bindings. (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
1 1
2 class _SVGFEConvolveMatrixElementImpl extends _SVGElementImpl implements SVGFECo nvolveMatrixElement { 2 class _SVGFEConvolveMatrixElementImpl extends _SVGElementImpl implements SVGFECo nvolveMatrixElement {
3 _SVGFEConvolveMatrixElementImpl._wrap(ptr) : super._wrap(ptr); 3 _SVGFEConvolveMatrixElementImpl._wrap(ptr) : super._wrap(ptr);
4 4
5 SVGAnimatedNumber get bias() => _wrap(_ptr.bias); 5 SVGAnimatedNumber get bias() => _wrap(_ptr.bias);
6 6
7 SVGAnimatedNumber get divisor() => _wrap(_ptr.divisor); 7 SVGAnimatedNumber get divisor() => _wrap(_ptr.divisor);
8 8
9 SVGAnimatedEnumeration get edgeMode() => _wrap(_ptr.edgeMode); 9 SVGAnimatedEnumeration get edgeMode() => _wrap(_ptr.edgeMode);
10 10
(...skipping 22 matching lines...) Expand all
33 SVGAnimatedString get result() => _wrap(_ptr.result); 33 SVGAnimatedString get result() => _wrap(_ptr.result);
34 34
35 SVGAnimatedLength get width() => _wrap(_ptr.width); 35 SVGAnimatedLength get width() => _wrap(_ptr.width);
36 36
37 SVGAnimatedLength get x() => _wrap(_ptr.x); 37 SVGAnimatedLength get x() => _wrap(_ptr.x);
38 38
39 SVGAnimatedLength get y() => _wrap(_ptr.y); 39 SVGAnimatedLength get y() => _wrap(_ptr.y);
40 40
41 // From SVGStylable 41 // From SVGStylable
42 42
43 SVGAnimatedString get _className() => _wrap(_ptr.className); 43 SVGAnimatedString get _svgClassName() => _wrap(_ptr.className);
44 44
45 CSSStyleDeclaration get style() => _wrap(_ptr.style); 45 CSSStyleDeclaration get style() => _wrap(_ptr.style);
46 46
47 CSSValue getPresentationAttribute(String name) { 47 CSSValue getPresentationAttribute(String name) {
48 return _wrap(_ptr.getPresentationAttribute(_unwrap(name))); 48 return _wrap(_ptr.getPresentationAttribute(_unwrap(name)));
49 } 49 }
50 } 50 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698