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

Unified Diff: sdk/lib/svg/dartium/svg_dartium.dart

Issue 319283003: Refactor dart:_blink into classes to improve startup time (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Rebase Created 6 years, 6 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 side-by-side diff with in-line comments
Download patch
Index: sdk/lib/svg/dartium/svg_dartium.dart
diff --git a/sdk/lib/svg/dartium/svg_dartium.dart b/sdk/lib/svg/dartium/svg_dartium.dart
index ebfc7e4b1e129615525367599024b1fb614c1968..d030f0607369f57c3d45ff66b649593d55c34ba1 100644
--- a/sdk/lib/svg/dartium/svg_dartium.dart
+++ b/sdk/lib/svg/dartium/svg_dartium.dart
@@ -200,11 +200,11 @@ class AElement extends GraphicsElement implements UriReference {
@DomName('SVGAElement.target')
@DocsEditable()
- AnimatedString get target => _blink.Native_SVGAElement_target_Getter(this);
+ AnimatedString get target => _blink.BlinkSVGAElement.$target_Getter(this);
@DomName('SVGAElement.href')
@DocsEditable()
- AnimatedString get href => _blink.Native_SVGAElement_href_Getter(this);
+ AnimatedString get href => _blink.BlinkSVGAElement.$href_Getter(this);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -239,23 +239,23 @@ class AltGlyphElement extends TextPositioningElement implements UriReference {
@DomName('SVGAltGlyphElement.format')
@DocsEditable()
- String get format => _blink.Native_SVGAltGlyphElement_format_Getter(this);
+ String get format => _blink.BlinkSVGAltGlyphElement.$format_Getter(this);
@DomName('SVGAltGlyphElement.format')
@DocsEditable()
- void set format(String value) => _blink.Native_SVGAltGlyphElement_format_Setter(this, value);
+ void set format(String value) => _blink.BlinkSVGAltGlyphElement.$format_Setter(this, value);
@DomName('SVGAltGlyphElement.glyphRef')
@DocsEditable()
- String get glyphRef => _blink.Native_SVGAltGlyphElement_glyphRef_Getter(this);
+ String get glyphRef => _blink.BlinkSVGAltGlyphElement.$glyphRef_Getter(this);
@DomName('SVGAltGlyphElement.glyphRef')
@DocsEditable()
- void set glyphRef(String value) => _blink.Native_SVGAltGlyphElement_glyphRef_Setter(this, value);
+ void set glyphRef(String value) => _blink.BlinkSVGAltGlyphElement.$glyphRef_Setter(this, value);
@DomName('SVGAltGlyphElement.href')
@DocsEditable()
- AnimatedString get href => _blink.Native_SVGAltGlyphElement_href_Getter(this);
+ AnimatedString get href => _blink.BlinkSVGAltGlyphElement.$href_Getter(this);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -294,39 +294,39 @@ class Angle extends NativeFieldWrapperClass2 {
@DomName('SVGAngle.unitType')
@DocsEditable()
- int get unitType => _blink.Native_SVGAngle_unitType_Getter(this);
+ int get unitType => _blink.BlinkSVGAngle.$unitType_Getter(this);
@DomName('SVGAngle.value')
@DocsEditable()
- num get value => _blink.Native_SVGAngle_value_Getter(this);
+ num get value => _blink.BlinkSVGAngle.$value_Getter(this);
@DomName('SVGAngle.value')
@DocsEditable()
- void set value(num value) => _blink.Native_SVGAngle_value_Setter(this, value);
+ void set value(num value) => _blink.BlinkSVGAngle.$value_Setter(this, value);
@DomName('SVGAngle.valueAsString')
@DocsEditable()
- String get valueAsString => _blink.Native_SVGAngle_valueAsString_Getter(this);
+ String get valueAsString => _blink.BlinkSVGAngle.$valueAsString_Getter(this);
@DomName('SVGAngle.valueAsString')
@DocsEditable()
- void set valueAsString(String value) => _blink.Native_SVGAngle_valueAsString_Setter(this, value);
+ void set valueAsString(String value) => _blink.BlinkSVGAngle.$valueAsString_Setter(this, value);
@DomName('SVGAngle.valueInSpecifiedUnits')
@DocsEditable()
- num get valueInSpecifiedUnits => _blink.Native_SVGAngle_valueInSpecifiedUnits_Getter(this);
+ num get valueInSpecifiedUnits => _blink.BlinkSVGAngle.$valueInSpecifiedUnits_Getter(this);
@DomName('SVGAngle.valueInSpecifiedUnits')
@DocsEditable()
- void set valueInSpecifiedUnits(num value) => _blink.Native_SVGAngle_valueInSpecifiedUnits_Setter(this, value);
+ void set valueInSpecifiedUnits(num value) => _blink.BlinkSVGAngle.$valueInSpecifiedUnits_Setter(this, value);
@DomName('SVGAngle.convertToSpecifiedUnits')
@DocsEditable()
- void convertToSpecifiedUnits(int unitType) => _blink.Native_SVGAngle_convertToSpecifiedUnits_Callback(this, unitType);
+ void convertToSpecifiedUnits(int unitType) => _blink.BlinkSVGAngle.$convertToSpecifiedUnits_Callback(this, unitType);
@DomName('SVGAngle.newValueSpecifiedUnits')
@DocsEditable()
- void newValueSpecifiedUnits(int unitType, num valueInSpecifiedUnits) => _blink.Native_SVGAngle_newValueSpecifiedUnits_Callback(this, unitType, valueInSpecifiedUnits);
+ void newValueSpecifiedUnits(int unitType, num valueInSpecifiedUnits) => _blink.BlinkSVGAngle.$newValueSpecifiedUnits_Callback(this, unitType, valueInSpecifiedUnits);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -438,11 +438,11 @@ class AnimatedAngle extends NativeFieldWrapperClass2 {
@DomName('SVGAnimatedAngle.animVal')
@DocsEditable()
- Angle get animVal => _blink.Native_SVGAnimatedAngle_animVal_Getter(this);
+ Angle get animVal => _blink.BlinkSVGAnimatedAngle.$animVal_Getter(this);
@DomName('SVGAnimatedAngle.baseVal')
@DocsEditable()
- Angle get baseVal => _blink.Native_SVGAnimatedAngle_baseVal_Getter(this);
+ Angle get baseVal => _blink.BlinkSVGAnimatedAngle.$baseVal_Getter(this);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -461,15 +461,15 @@ class AnimatedBoolean extends NativeFieldWrapperClass2 {
@DomName('SVGAnimatedBoolean.animVal')
@DocsEditable()
- bool get animVal => _blink.Native_SVGAnimatedBoolean_animVal_Getter(this);
+ bool get animVal => _blink.BlinkSVGAnimatedBoolean.$animVal_Getter(this);
@DomName('SVGAnimatedBoolean.baseVal')
@DocsEditable()
- bool get baseVal => _blink.Native_SVGAnimatedBoolean_baseVal_Getter(this);
+ bool get baseVal => _blink.BlinkSVGAnimatedBoolean.$baseVal_Getter(this);
@DomName('SVGAnimatedBoolean.baseVal')
@DocsEditable()
- void set baseVal(bool value) => _blink.Native_SVGAnimatedBoolean_baseVal_Setter(this, value);
+ void set baseVal(bool value) => _blink.BlinkSVGAnimatedBoolean.$baseVal_Setter(this, value);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -488,15 +488,15 @@ class AnimatedEnumeration extends NativeFieldWrapperClass2 {
@DomName('SVGAnimatedEnumeration.animVal')
@DocsEditable()
- int get animVal => _blink.Native_SVGAnimatedEnumeration_animVal_Getter(this);
+ int get animVal => _blink.BlinkSVGAnimatedEnumeration.$animVal_Getter(this);
@DomName('SVGAnimatedEnumeration.baseVal')
@DocsEditable()
- int get baseVal => _blink.Native_SVGAnimatedEnumeration_baseVal_Getter(this);
+ int get baseVal => _blink.BlinkSVGAnimatedEnumeration.$baseVal_Getter(this);
@DomName('SVGAnimatedEnumeration.baseVal')
@DocsEditable()
- void set baseVal(int value) => _blink.Native_SVGAnimatedEnumeration_baseVal_Setter(this, value);
+ void set baseVal(int value) => _blink.BlinkSVGAnimatedEnumeration.$baseVal_Setter(this, value);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -515,15 +515,15 @@ class AnimatedInteger extends NativeFieldWrapperClass2 {
@DomName('SVGAnimatedInteger.animVal')
@DocsEditable()
- int get animVal => _blink.Native_SVGAnimatedInteger_animVal_Getter(this);
+ int get animVal => _blink.BlinkSVGAnimatedInteger.$animVal_Getter(this);
@DomName('SVGAnimatedInteger.baseVal')
@DocsEditable()
- int get baseVal => _blink.Native_SVGAnimatedInteger_baseVal_Getter(this);
+ int get baseVal => _blink.BlinkSVGAnimatedInteger.$baseVal_Getter(this);
@DomName('SVGAnimatedInteger.baseVal')
@DocsEditable()
- void set baseVal(int value) => _blink.Native_SVGAnimatedInteger_baseVal_Setter(this, value);
+ void set baseVal(int value) => _blink.BlinkSVGAnimatedInteger.$baseVal_Setter(this, value);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -542,11 +542,11 @@ class AnimatedLength extends NativeFieldWrapperClass2 {
@DomName('SVGAnimatedLength.animVal')
@DocsEditable()
- Length get animVal => _blink.Native_SVGAnimatedLength_animVal_Getter(this);
+ Length get animVal => _blink.BlinkSVGAnimatedLength.$animVal_Getter(this);
@DomName('SVGAnimatedLength.baseVal')
@DocsEditable()
- Length get baseVal => _blink.Native_SVGAnimatedLength_baseVal_Getter(this);
+ Length get baseVal => _blink.BlinkSVGAnimatedLength.$baseVal_Getter(this);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -565,11 +565,11 @@ class AnimatedLengthList extends NativeFieldWrapperClass2 {
@DomName('SVGAnimatedLengthList.animVal')
@DocsEditable()
- LengthList get animVal => _blink.Native_SVGAnimatedLengthList_animVal_Getter(this);
+ LengthList get animVal => _blink.BlinkSVGAnimatedLengthList.$animVal_Getter(this);
@DomName('SVGAnimatedLengthList.baseVal')
@DocsEditable()
- LengthList get baseVal => _blink.Native_SVGAnimatedLengthList_baseVal_Getter(this);
+ LengthList get baseVal => _blink.BlinkSVGAnimatedLengthList.$baseVal_Getter(this);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -588,15 +588,15 @@ class AnimatedNumber extends NativeFieldWrapperClass2 {
@DomName('SVGAnimatedNumber.animVal')
@DocsEditable()
- double get animVal => _blink.Native_SVGAnimatedNumber_animVal_Getter(this);
+ double get animVal => _blink.BlinkSVGAnimatedNumber.$animVal_Getter(this);
@DomName('SVGAnimatedNumber.baseVal')
@DocsEditable()
- num get baseVal => _blink.Native_SVGAnimatedNumber_baseVal_Getter(this);
+ num get baseVal => _blink.BlinkSVGAnimatedNumber.$baseVal_Getter(this);
@DomName('SVGAnimatedNumber.baseVal')
@DocsEditable()
- void set baseVal(num value) => _blink.Native_SVGAnimatedNumber_baseVal_Setter(this, value);
+ void set baseVal(num value) => _blink.BlinkSVGAnimatedNumber.$baseVal_Setter(this, value);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -615,11 +615,11 @@ class AnimatedNumberList extends NativeFieldWrapperClass2 {
@DomName('SVGAnimatedNumberList.animVal')
@DocsEditable()
- NumberList get animVal => _blink.Native_SVGAnimatedNumberList_animVal_Getter(this);
+ NumberList get animVal => _blink.BlinkSVGAnimatedNumberList.$animVal_Getter(this);
@DomName('SVGAnimatedNumberList.baseVal')
@DocsEditable()
- NumberList get baseVal => _blink.Native_SVGAnimatedNumberList_baseVal_Getter(this);
+ NumberList get baseVal => _blink.BlinkSVGAnimatedNumberList.$baseVal_Getter(this);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -638,11 +638,11 @@ class AnimatedPreserveAspectRatio extends NativeFieldWrapperClass2 {
@DomName('SVGAnimatedPreserveAspectRatio.animVal')
@DocsEditable()
- PreserveAspectRatio get animVal => _blink.Native_SVGAnimatedPreserveAspectRatio_animVal_Getter(this);
+ PreserveAspectRatio get animVal => _blink.BlinkSVGAnimatedPreserveAspectRatio.$animVal_Getter(this);
@DomName('SVGAnimatedPreserveAspectRatio.baseVal')
@DocsEditable()
- PreserveAspectRatio get baseVal => _blink.Native_SVGAnimatedPreserveAspectRatio_baseVal_Getter(this);
+ PreserveAspectRatio get baseVal => _blink.BlinkSVGAnimatedPreserveAspectRatio.$baseVal_Getter(this);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -661,11 +661,11 @@ class AnimatedRect extends NativeFieldWrapperClass2 {
@DomName('SVGAnimatedRect.animVal')
@DocsEditable()
- Rect get animVal => _blink.Native_SVGAnimatedRect_animVal_Getter(this);
+ Rect get animVal => _blink.BlinkSVGAnimatedRect.$animVal_Getter(this);
@DomName('SVGAnimatedRect.baseVal')
@DocsEditable()
- Rect get baseVal => _blink.Native_SVGAnimatedRect_baseVal_Getter(this);
+ Rect get baseVal => _blink.BlinkSVGAnimatedRect.$baseVal_Getter(this);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -684,15 +684,15 @@ class AnimatedString extends NativeFieldWrapperClass2 {
@DomName('SVGAnimatedString.animVal')
@DocsEditable()
- String get animVal => _blink.Native_SVGAnimatedString_animVal_Getter(this);
+ String get animVal => _blink.BlinkSVGAnimatedString.$animVal_Getter(this);
@DomName('SVGAnimatedString.baseVal')
@DocsEditable()
- String get baseVal => _blink.Native_SVGAnimatedString_baseVal_Getter(this);
+ String get baseVal => _blink.BlinkSVGAnimatedString.$baseVal_Getter(this);
@DomName('SVGAnimatedString.baseVal')
@DocsEditable()
- void set baseVal(String value) => _blink.Native_SVGAnimatedString_baseVal_Setter(this, value);
+ void set baseVal(String value) => _blink.BlinkSVGAnimatedString.$baseVal_Setter(this, value);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -711,11 +711,11 @@ class AnimatedTransformList extends NativeFieldWrapperClass2 {
@DomName('SVGAnimatedTransformList.animVal')
@DocsEditable()
- TransformList get animVal => _blink.Native_SVGAnimatedTransformList_animVal_Getter(this);
+ TransformList get animVal => _blink.BlinkSVGAnimatedTransformList.$animVal_Getter(this);
@DomName('SVGAnimatedTransformList.baseVal')
@DocsEditable()
- TransformList get baseVal => _blink.Native_SVGAnimatedTransformList_baseVal_Getter(this);
+ TransformList get baseVal => _blink.BlinkSVGAnimatedTransformList.$baseVal_Getter(this);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -744,51 +744,51 @@ class AnimationElement extends SvgElement implements Tests {
@DomName('SVGAnimationElement.targetElement')
@DocsEditable()
- SvgElement get targetElement => _blink.Native_SVGAnimationElement_targetElement_Getter(this);
+ SvgElement get targetElement => _blink.BlinkSVGAnimationElement.$targetElement_Getter(this);
@DomName('SVGAnimationElement.beginElement')
@DocsEditable()
- void beginElement() => _blink.Native_SVGAnimationElement_beginElement_Callback(this);
+ void beginElement() => _blink.BlinkSVGAnimationElement.$beginElement_Callback(this);
@DomName('SVGAnimationElement.beginElementAt')
@DocsEditable()
- void beginElementAt(num offset) => _blink.Native_SVGAnimationElement_beginElementAt_Callback(this, offset);
+ void beginElementAt(num offset) => _blink.BlinkSVGAnimationElement.$beginElementAt_Callback(this, offset);
@DomName('SVGAnimationElement.endElement')
@DocsEditable()
- void endElement() => _blink.Native_SVGAnimationElement_endElement_Callback(this);
+ void endElement() => _blink.BlinkSVGAnimationElement.$endElement_Callback(this);
@DomName('SVGAnimationElement.endElementAt')
@DocsEditable()
- void endElementAt(num offset) => _blink.Native_SVGAnimationElement_endElementAt_Callback(this, offset);
+ void endElementAt(num offset) => _blink.BlinkSVGAnimationElement.$endElementAt_Callback(this, offset);
@DomName('SVGAnimationElement.getCurrentTime')
@DocsEditable()
- double getCurrentTime() => _blink.Native_SVGAnimationElement_getCurrentTime_Callback(this);
+ double getCurrentTime() => _blink.BlinkSVGAnimationElement.$getCurrentTime_Callback(this);
@DomName('SVGAnimationElement.getSimpleDuration')
@DocsEditable()
- double getSimpleDuration() => _blink.Native_SVGAnimationElement_getSimpleDuration_Callback(this);
+ double getSimpleDuration() => _blink.BlinkSVGAnimationElement.$getSimpleDuration_Callback(this);
@DomName('SVGAnimationElement.getStartTime')
@DocsEditable()
- double getStartTime() => _blink.Native_SVGAnimationElement_getStartTime_Callback(this);
+ double getStartTime() => _blink.BlinkSVGAnimationElement.$getStartTime_Callback(this);
@DomName('SVGAnimationElement.requiredExtensions')
@DocsEditable()
- StringList get requiredExtensions => _blink.Native_SVGAnimationElement_requiredExtensions_Getter(this);
+ StringList get requiredExtensions => _blink.BlinkSVGAnimationElement.$requiredExtensions_Getter(this);
@DomName('SVGAnimationElement.requiredFeatures')
@DocsEditable()
- StringList get requiredFeatures => _blink.Native_SVGAnimationElement_requiredFeatures_Getter(this);
+ StringList get requiredFeatures => _blink.BlinkSVGAnimationElement.$requiredFeatures_Getter(this);
@DomName('SVGAnimationElement.systemLanguage')
@DocsEditable()
- StringList get systemLanguage => _blink.Native_SVGAnimationElement_systemLanguage_Getter(this);
+ StringList get systemLanguage => _blink.BlinkSVGAnimationElement.$systemLanguage_Getter(this);
@DomName('SVGAnimationElement.hasExtension')
@DocsEditable()
- bool hasExtension(String extension) => _blink.Native_SVGAnimationElement_hasExtension_Callback(this, extension);
+ bool hasExtension(String extension) => _blink.BlinkSVGAnimationElement.$hasExtension_Callback(this, extension);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -817,15 +817,15 @@ class CircleElement extends GeometryElement {
@DomName('SVGCircleElement.cx')
@DocsEditable()
- AnimatedLength get cx => _blink.Native_SVGCircleElement_cx_Getter(this);
+ AnimatedLength get cx => _blink.BlinkSVGCircleElement.$cx_Getter(this);
@DomName('SVGCircleElement.cy')
@DocsEditable()
- AnimatedLength get cy => _blink.Native_SVGCircleElement_cy_Getter(this);
+ AnimatedLength get cy => _blink.BlinkSVGCircleElement.$cy_Getter(this);
@DomName('SVGCircleElement.r')
@DocsEditable()
- AnimatedLength get r => _blink.Native_SVGCircleElement_r_Getter(this);
+ AnimatedLength get r => _blink.BlinkSVGCircleElement.$r_Getter(this);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -854,7 +854,7 @@ class ClipPathElement extends GraphicsElement {
@DomName('SVGClipPathElement.clipPathUnits')
@DocsEditable()
- AnimatedEnumeration get clipPathUnits => _blink.Native_SVGClipPathElement_clipPathUnits_Getter(this);
+ AnimatedEnumeration get clipPathUnits => _blink.BlinkSVGClipPathElement.$clipPathUnits_Getter(this);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -1368,31 +1368,31 @@ class ElementInstance extends EventTarget {
@DomName('SVGElementInstance.correspondingElement')
@DocsEditable()
- SvgElement get correspondingElement => _blink.Native_SVGElementInstance_correspondingElement_Getter(this);
+ SvgElement get correspondingElement => _blink.BlinkSVGElementInstance.$correspondingElement_Getter(this);
@DomName('SVGElementInstance.correspondingUseElement')
@DocsEditable()
- UseElement get correspondingUseElement => _blink.Native_SVGElementInstance_correspondingUseElement_Getter(this);
+ UseElement get correspondingUseElement => _blink.BlinkSVGElementInstance.$correspondingUseElement_Getter(this);
@DomName('SVGElementInstance.firstChild')
@DocsEditable()
- ElementInstance get firstChild => _blink.Native_SVGElementInstance_firstChild_Getter(this);
+ ElementInstance get firstChild => _blink.BlinkSVGElementInstance.$firstChild_Getter(this);
@DomName('SVGElementInstance.lastChild')
@DocsEditable()
- ElementInstance get lastChild => _blink.Native_SVGElementInstance_lastChild_Getter(this);
+ ElementInstance get lastChild => _blink.BlinkSVGElementInstance.$lastChild_Getter(this);
@DomName('SVGElementInstance.nextSibling')
@DocsEditable()
- ElementInstance get nextSibling => _blink.Native_SVGElementInstance_nextSibling_Getter(this);
+ ElementInstance get nextSibling => _blink.BlinkSVGElementInstance.$nextSibling_Getter(this);
@DomName('SVGElementInstance.parentNode')
@DocsEditable()
- ElementInstance get parentNode => _blink.Native_SVGElementInstance_parentNode_Getter(this);
+ ElementInstance get parentNode => _blink.BlinkSVGElementInstance.$parentNode_Getter(this);
@DomName('SVGElementInstance.previousSibling')
@DocsEditable()
- ElementInstance get previousSibling => _blink.Native_SVGElementInstance_previousSibling_Getter(this);
+ ElementInstance get previousSibling => _blink.BlinkSVGElementInstance.$previousSibling_Getter(this);
/// Stream of `abort` events handled by this [ElementInstance].
@DomName('SVGElementInstance.onabort')
@@ -1635,19 +1635,19 @@ class EllipseElement extends GeometryElement {
@DomName('SVGEllipseElement.cx')
@DocsEditable()
- AnimatedLength get cx => _blink.Native_SVGEllipseElement_cx_Getter(this);
+ AnimatedLength get cx => _blink.BlinkSVGEllipseElement.$cx_Getter(this);
@DomName('SVGEllipseElement.cy')
@DocsEditable()
- AnimatedLength get cy => _blink.Native_SVGEllipseElement_cy_Getter(this);
+ AnimatedLength get cy => _blink.BlinkSVGEllipseElement.$cy_Getter(this);
@DomName('SVGEllipseElement.rx')
@DocsEditable()
- AnimatedLength get rx => _blink.Native_SVGEllipseElement_rx_Getter(this);
+ AnimatedLength get rx => _blink.BlinkSVGEllipseElement.$rx_Getter(this);
@DomName('SVGEllipseElement.ry')
@DocsEditable()
- AnimatedLength get ry => _blink.Native_SVGEllipseElement_ry_Getter(this);
+ AnimatedLength get ry => _blink.BlinkSVGEllipseElement.$ry_Getter(this);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -1707,35 +1707,35 @@ class FEBlendElement extends SvgElement implements FilterPrimitiveStandardAttrib
@DomName('SVGFEBlendElement.in1')
@DocsEditable()
- AnimatedString get in1 => _blink.Native_SVGFEBlendElement_in1_Getter(this);
+ AnimatedString get in1 => _blink.BlinkSVGFEBlendElement.$in1_Getter(this);
@DomName('SVGFEBlendElement.in2')
@DocsEditable()
- AnimatedString get in2 => _blink.Native_SVGFEBlendElement_in2_Getter(this);
+ AnimatedString get in2 => _blink.BlinkSVGFEBlendElement.$in2_Getter(this);
@DomName('SVGFEBlendElement.mode')
@DocsEditable()
- AnimatedEnumeration get mode => _blink.Native_SVGFEBlendElement_mode_Getter(this);
+ AnimatedEnumeration get mode => _blink.BlinkSVGFEBlendElement.$mode_Getter(this);
@DomName('SVGFEBlendElement.height')
@DocsEditable()
- AnimatedLength get height => _blink.Native_SVGFEBlendElement_height_Getter(this);
+ AnimatedLength get height => _blink.BlinkSVGFEBlendElement.$height_Getter(this);
@DomName('SVGFEBlendElement.result')
@DocsEditable()
- AnimatedString get result => _blink.Native_SVGFEBlendElement_result_Getter(this);
+ AnimatedString get result => _blink.BlinkSVGFEBlendElement.$result_Getter(this);
@DomName('SVGFEBlendElement.width')
@DocsEditable()
- AnimatedLength get width => _blink.Native_SVGFEBlendElement_width_Getter(this);
+ AnimatedLength get width => _blink.BlinkSVGFEBlendElement.$width_Getter(this);
@DomName('SVGFEBlendElement.x')
@DocsEditable()
- AnimatedLength get x => _blink.Native_SVGFEBlendElement_x_Getter(this);
+ AnimatedLength get x => _blink.BlinkSVGFEBlendElement.$x_Getter(this);
@DomName('SVGFEBlendElement.y')
@DocsEditable()
- AnimatedLength get y => _blink.Native_SVGFEBlendElement_y_Getter(this);
+ AnimatedLength get y => _blink.BlinkSVGFEBlendElement.$y_Getter(this);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -1791,35 +1791,35 @@ class FEColorMatrixElement extends SvgElement implements FilterPrimitiveStandard
@DomName('SVGFEColorMatrixElement.in1')
@DocsEditable()
- AnimatedString get in1 => _blink.Native_SVGFEColorMatrixElement_in1_Getter(this);
+ AnimatedString get in1 => _blink.BlinkSVGFEColorMatrixElement.$in1_Getter(this);
@DomName('SVGFEColorMatrixElement.type')
@DocsEditable()
- AnimatedEnumeration get type => _blink.Native_SVGFEColorMatrixElement_type_Getter(this);
+ AnimatedEnumeration get type => _blink.BlinkSVGFEColorMatrixElement.$type_Getter(this);
@DomName('SVGFEColorMatrixElement.values')
@DocsEditable()
- AnimatedNumberList get values => _blink.Native_SVGFEColorMatrixElement_values_Getter(this);
+ AnimatedNumberList get values => _blink.BlinkSVGFEColorMatrixElement.$values_Getter(this);
@DomName('SVGFEColorMatrixElement.height')
@DocsEditable()
- AnimatedLength get height => _blink.Native_SVGFEColorMatrixElement_height_Getter(this);
+ AnimatedLength get height => _blink.BlinkSVGFEColorMatrixElement.$height_Getter(this);
@DomName('SVGFEColorMatrixElement.result')
@DocsEditable()
- AnimatedString get result => _blink.Native_SVGFEColorMatrixElement_result_Getter(this);
+ AnimatedString get result => _blink.BlinkSVGFEColorMatrixElement.$result_Getter(this);
@DomName('SVGFEColorMatrixElement.width')
@DocsEditable()
- AnimatedLength get width => _blink.Native_SVGFEColorMatrixElement_width_Getter(this);
+ AnimatedLength get width => _blink.BlinkSVGFEColorMatrixElement.$width_Getter(this);
@DomName('SVGFEColorMatrixElement.x')
@DocsEditable()
- AnimatedLength get x => _blink.Native_SVGFEColorMatrixElement_x_Getter(this);
+ AnimatedLength get x => _blink.BlinkSVGFEColorMatrixElement.$x_Getter(this);
@DomName('SVGFEColorMatrixElement.y')
@DocsEditable()
- AnimatedLength get y => _blink.Native_SVGFEColorMatrixElement_y_Getter(this);
+ AnimatedLength get y => _blink.BlinkSVGFEColorMatrixElement.$y_Getter(this);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -1855,27 +1855,27 @@ class FEComponentTransferElement extends SvgElement implements FilterPrimitiveSt
@DomName('SVGFEComponentTransferElement.in1')
@DocsEditable()
- AnimatedString get in1 => _blink.Native_SVGFEComponentTransferElement_in1_Getter(this);
+ AnimatedString get in1 => _blink.BlinkSVGFEComponentTransferElement.$in1_Getter(this);
@DomName('SVGFEComponentTransferElement.height')
@DocsEditable()
- AnimatedLength get height => _blink.Native_SVGFEComponentTransferElement_height_Getter(this);
+ AnimatedLength get height => _blink.BlinkSVGFEComponentTransferElement.$height_Getter(this);
@DomName('SVGFEComponentTransferElement.result')
@DocsEditable()
- AnimatedString get result => _blink.Native_SVGFEComponentTransferElement_result_Getter(this);
+ AnimatedString get result => _blink.BlinkSVGFEComponentTransferElement.$result_Getter(this);
@DomName('SVGFEComponentTransferElement.width')
@DocsEditable()
- AnimatedLength get width => _blink.Native_SVGFEComponentTransferElement_width_Getter(this);
+ AnimatedLength get width => _blink.BlinkSVGFEComponentTransferElement.$width_Getter(this);
@DomName('SVGFEComponentTransferElement.x')
@DocsEditable()
- AnimatedLength get x => _blink.Native_SVGFEComponentTransferElement_x_Getter(this);
+ AnimatedLength get x => _blink.BlinkSVGFEComponentTransferElement.$x_Getter(this);
@DomName('SVGFEComponentTransferElement.y')
@DocsEditable()
- AnimatedLength get y => _blink.Native_SVGFEComponentTransferElement_y_Getter(this);
+ AnimatedLength get y => _blink.BlinkSVGFEComponentTransferElement.$y_Getter(this);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -1928,51 +1928,51 @@ class FECompositeElement extends SvgElement implements FilterPrimitiveStandardAt
@DomName('SVGFECompositeElement.in1')
@DocsEditable()
- AnimatedString get in1 => _blink.Native_SVGFECompositeElement_in1_Getter(this);
+ AnimatedString get in1 => _blink.BlinkSVGFECompositeElement.$in1_Getter(this);
@DomName('SVGFECompositeElement.in2')
@DocsEditable()
- AnimatedString get in2 => _blink.Native_SVGFECompositeElement_in2_Getter(this);
+ AnimatedString get in2 => _blink.BlinkSVGFECompositeElement.$in2_Getter(this);
@DomName('SVGFECompositeElement.k1')
@DocsEditable()
- AnimatedNumber get k1 => _blink.Native_SVGFECompositeElement_k1_Getter(this);
+ AnimatedNumber get k1 => _blink.BlinkSVGFECompositeElement.$k1_Getter(this);
@DomName('SVGFECompositeElement.k2')
@DocsEditable()
- AnimatedNumber get k2 => _blink.Native_SVGFECompositeElement_k2_Getter(this);
+ AnimatedNumber get k2 => _blink.BlinkSVGFECompositeElement.$k2_Getter(this);
@DomName('SVGFECompositeElement.k3')
@DocsEditable()
- AnimatedNumber get k3 => _blink.Native_SVGFECompositeElement_k3_Getter(this);
+ AnimatedNumber get k3 => _blink.BlinkSVGFECompositeElement.$k3_Getter(this);
@DomName('SVGFECompositeElement.k4')
@DocsEditable()
- AnimatedNumber get k4 => _blink.Native_SVGFECompositeElement_k4_Getter(this);
+ AnimatedNumber get k4 => _blink.BlinkSVGFECompositeElement.$k4_Getter(this);
@DomName('SVGFECompositeElement.operator')
@DocsEditable()
- AnimatedEnumeration get operator => _blink.Native_SVGFECompositeElement_operator_Getter(this);
+ AnimatedEnumeration get operator => _blink.BlinkSVGFECompositeElement.$operator_Getter(this);
@DomName('SVGFECompositeElement.height')
@DocsEditable()
- AnimatedLength get height => _blink.Native_SVGFECompositeElement_height_Getter(this);
+ AnimatedLength get height => _blink.BlinkSVGFECompositeElement.$height_Getter(this);
@DomName('SVGFECompositeElement.result')
@DocsEditable()
- AnimatedString get result => _blink.Native_SVGFECompositeElement_result_Getter(this);
+ AnimatedString get result => _blink.BlinkSVGFECompositeElement.$result_Getter(this);
@DomName('SVGFECompositeElement.width')
@DocsEditable()
- AnimatedLength get width => _blink.Native_SVGFECompositeElement_width_Getter(this);
+ AnimatedLength get width => _blink.BlinkSVGFECompositeElement.$width_Getter(this);
@DomName('SVGFECompositeElement.x')
@DocsEditable()
- AnimatedLength get x => _blink.Native_SVGFECompositeElement_x_Getter(this);
+ AnimatedLength get x => _blink.BlinkSVGFECompositeElement.$x_Getter(this);
@DomName('SVGFECompositeElement.y')
@DocsEditable()
- AnimatedLength get y => _blink.Native_SVGFECompositeElement_y_Getter(this);
+ AnimatedLength get y => _blink.BlinkSVGFECompositeElement.$y_Getter(this);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -2024,71 +2024,71 @@ class FEConvolveMatrixElement extends SvgElement implements FilterPrimitiveStand
@DomName('SVGFEConvolveMatrixElement.bias')
@DocsEditable()
- AnimatedNumber get bias => _blink.Native_SVGFEConvolveMatrixElement_bias_Getter(this);
+ AnimatedNumber get bias => _blink.BlinkSVGFEConvolveMatrixElement.$bias_Getter(this);
@DomName('SVGFEConvolveMatrixElement.divisor')
@DocsEditable()
- AnimatedNumber get divisor => _blink.Native_SVGFEConvolveMatrixElement_divisor_Getter(this);
+ AnimatedNumber get divisor => _blink.BlinkSVGFEConvolveMatrixElement.$divisor_Getter(this);
@DomName('SVGFEConvolveMatrixElement.edgeMode')
@DocsEditable()
- AnimatedEnumeration get edgeMode => _blink.Native_SVGFEConvolveMatrixElement_edgeMode_Getter(this);
+ AnimatedEnumeration get edgeMode => _blink.BlinkSVGFEConvolveMatrixElement.$edgeMode_Getter(this);
@DomName('SVGFEConvolveMatrixElement.in1')
@DocsEditable()
- AnimatedString get in1 => _blink.Native_SVGFEConvolveMatrixElement_in1_Getter(this);
+ AnimatedString get in1 => _blink.BlinkSVGFEConvolveMatrixElement.$in1_Getter(this);
@DomName('SVGFEConvolveMatrixElement.kernelMatrix')
@DocsEditable()
- AnimatedNumberList get kernelMatrix => _blink.Native_SVGFEConvolveMatrixElement_kernelMatrix_Getter(this);
+ AnimatedNumberList get kernelMatrix => _blink.BlinkSVGFEConvolveMatrixElement.$kernelMatrix_Getter(this);
@DomName('SVGFEConvolveMatrixElement.kernelUnitLengthX')
@DocsEditable()
- AnimatedNumber get kernelUnitLengthX => _blink.Native_SVGFEConvolveMatrixElement_kernelUnitLengthX_Getter(this);
+ AnimatedNumber get kernelUnitLengthX => _blink.BlinkSVGFEConvolveMatrixElement.$kernelUnitLengthX_Getter(this);
@DomName('SVGFEConvolveMatrixElement.kernelUnitLengthY')
@DocsEditable()
- AnimatedNumber get kernelUnitLengthY => _blink.Native_SVGFEConvolveMatrixElement_kernelUnitLengthY_Getter(this);
+ AnimatedNumber get kernelUnitLengthY => _blink.BlinkSVGFEConvolveMatrixElement.$kernelUnitLengthY_Getter(this);
@DomName('SVGFEConvolveMatrixElement.orderX')
@DocsEditable()
- AnimatedInteger get orderX => _blink.Native_SVGFEConvolveMatrixElement_orderX_Getter(this);
+ AnimatedInteger get orderX => _blink.BlinkSVGFEConvolveMatrixElement.$orderX_Getter(this);
@DomName('SVGFEConvolveMatrixElement.orderY')
@DocsEditable()
- AnimatedInteger get orderY => _blink.Native_SVGFEConvolveMatrixElement_orderY_Getter(this);
+ AnimatedInteger get orderY => _blink.BlinkSVGFEConvolveMatrixElement.$orderY_Getter(this);
@DomName('SVGFEConvolveMatrixElement.preserveAlpha')
@DocsEditable()
- AnimatedBoolean get preserveAlpha => _blink.Native_SVGFEConvolveMatrixElement_preserveAlpha_Getter(this);
+ AnimatedBoolean get preserveAlpha => _blink.BlinkSVGFEConvolveMatrixElement.$preserveAlpha_Getter(this);
@DomName('SVGFEConvolveMatrixElement.targetX')
@DocsEditable()
- AnimatedInteger get targetX => _blink.Native_SVGFEConvolveMatrixElement_targetX_Getter(this);
+ AnimatedInteger get targetX => _blink.BlinkSVGFEConvolveMatrixElement.$targetX_Getter(this);
@DomName('SVGFEConvolveMatrixElement.targetY')
@DocsEditable()
- AnimatedInteger get targetY => _blink.Native_SVGFEConvolveMatrixElement_targetY_Getter(this);
+ AnimatedInteger get targetY => _blink.BlinkSVGFEConvolveMatrixElement.$targetY_Getter(this);
@DomName('SVGFEConvolveMatrixElement.height')
@DocsEditable()
- AnimatedLength get height => _blink.Native_SVGFEConvolveMatrixElement_height_Getter(this);
+ AnimatedLength get height => _blink.BlinkSVGFEConvolveMatrixElement.$height_Getter(this);
@DomName('SVGFEConvolveMatrixElement.result')
@DocsEditable()
- AnimatedString get result => _blink.Native_SVGFEConvolveMatrixElement_result_Getter(this);
+ AnimatedString get result => _blink.BlinkSVGFEConvolveMatrixElement.$result_Getter(this);
@DomName('SVGFEConvolveMatrixElement.width')
@DocsEditable()
- AnimatedLength get width => _blink.Native_SVGFEConvolveMatrixElement_width_Getter(this);
+ AnimatedLength get width => _blink.BlinkSVGFEConvolveMatrixElement.$width_Getter(this);
@DomName('SVGFEConvolveMatrixElement.x')
@DocsEditable()
- AnimatedLength get x => _blink.Native_SVGFEConvolveMatrixElement_x_Getter(this);
+ AnimatedLength get x => _blink.BlinkSVGFEConvolveMatrixElement.$x_Getter(this);
@DomName('SVGFEConvolveMatrixElement.y')
@DocsEditable()
- AnimatedLength get y => _blink.Native_SVGFEConvolveMatrixElement_y_Getter(this);
+ AnimatedLength get y => _blink.BlinkSVGFEConvolveMatrixElement.$y_Getter(this);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -2124,43 +2124,43 @@ class FEDiffuseLightingElement extends SvgElement implements FilterPrimitiveStan
@DomName('SVGFEDiffuseLightingElement.diffuseConstant')
@DocsEditable()
- AnimatedNumber get diffuseConstant => _blink.Native_SVGFEDiffuseLightingElement_diffuseConstant_Getter(this);
+ AnimatedNumber get diffuseConstant => _blink.BlinkSVGFEDiffuseLightingElement.$diffuseConstant_Getter(this);
@DomName('SVGFEDiffuseLightingElement.in1')
@DocsEditable()
- AnimatedString get in1 => _blink.Native_SVGFEDiffuseLightingElement_in1_Getter(this);
+ AnimatedString get in1 => _blink.BlinkSVGFEDiffuseLightingElement.$in1_Getter(this);
@DomName('SVGFEDiffuseLightingElement.kernelUnitLengthX')
@DocsEditable()
- AnimatedNumber get kernelUnitLengthX => _blink.Native_SVGFEDiffuseLightingElement_kernelUnitLengthX_Getter(this);
+ AnimatedNumber get kernelUnitLengthX => _blink.BlinkSVGFEDiffuseLightingElement.$kernelUnitLengthX_Getter(this);
@DomName('SVGFEDiffuseLightingElement.kernelUnitLengthY')
@DocsEditable()
- AnimatedNumber get kernelUnitLengthY => _blink.Native_SVGFEDiffuseLightingElement_kernelUnitLengthY_Getter(this);
+ AnimatedNumber get kernelUnitLengthY => _blink.BlinkSVGFEDiffuseLightingElement.$kernelUnitLengthY_Getter(this);
@DomName('SVGFEDiffuseLightingElement.surfaceScale')
@DocsEditable()
- AnimatedNumber get surfaceScale => _blink.Native_SVGFEDiffuseLightingElement_surfaceScale_Getter(this);
+ AnimatedNumber get surfaceScale => _blink.BlinkSVGFEDiffuseLightingElement.$surfaceScale_Getter(this);
@DomName('SVGFEDiffuseLightingElement.height')
@DocsEditable()
- AnimatedLength get height => _blink.Native_SVGFEDiffuseLightingElement_height_Getter(this);
+ AnimatedLength get height => _blink.BlinkSVGFEDiffuseLightingElement.$height_Getter(this);
@DomName('SVGFEDiffuseLightingElement.result')
@DocsEditable()
- AnimatedString get result => _blink.Native_SVGFEDiffuseLightingElement_result_Getter(this);
+ AnimatedString get result => _blink.BlinkSVGFEDiffuseLightingElement.$result_Getter(this);
@DomName('SVGFEDiffuseLightingElement.width')
@DocsEditable()
- AnimatedLength get width => _blink.Native_SVGFEDiffuseLightingElement_width_Getter(this);
+ AnimatedLength get width => _blink.BlinkSVGFEDiffuseLightingElement.$width_Getter(this);
@DomName('SVGFEDiffuseLightingElement.x')
@DocsEditable()
- AnimatedLength get x => _blink.Native_SVGFEDiffuseLightingElement_x_Getter(this);
+ AnimatedLength get x => _blink.BlinkSVGFEDiffuseLightingElement.$x_Getter(this);
@DomName('SVGFEDiffuseLightingElement.y')
@DocsEditable()
- AnimatedLength get y => _blink.Native_SVGFEDiffuseLightingElement_y_Getter(this);
+ AnimatedLength get y => _blink.BlinkSVGFEDiffuseLightingElement.$y_Getter(this);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -2216,43 +2216,43 @@ class FEDisplacementMapElement extends SvgElement implements FilterPrimitiveStan
@DomName('SVGFEDisplacementMapElement.in1')
@DocsEditable()
- AnimatedString get in1 => _blink.Native_SVGFEDisplacementMapElement_in1_Getter(this);
+ AnimatedString get in1 => _blink.BlinkSVGFEDisplacementMapElement.$in1_Getter(this);
@DomName('SVGFEDisplacementMapElement.in2')
@DocsEditable()
- AnimatedString get in2 => _blink.Native_SVGFEDisplacementMapElement_in2_Getter(this);
+ AnimatedString get in2 => _blink.BlinkSVGFEDisplacementMapElement.$in2_Getter(this);
@DomName('SVGFEDisplacementMapElement.scale')
@DocsEditable()
- AnimatedNumber get scale => _blink.Native_SVGFEDisplacementMapElement_scale_Getter(this);
+ AnimatedNumber get scale => _blink.BlinkSVGFEDisplacementMapElement.$scale_Getter(this);
@DomName('SVGFEDisplacementMapElement.xChannelSelector')
@DocsEditable()
- AnimatedEnumeration get xChannelSelector => _blink.Native_SVGFEDisplacementMapElement_xChannelSelector_Getter(this);
+ AnimatedEnumeration get xChannelSelector => _blink.BlinkSVGFEDisplacementMapElement.$xChannelSelector_Getter(this);
@DomName('SVGFEDisplacementMapElement.yChannelSelector')
@DocsEditable()
- AnimatedEnumeration get yChannelSelector => _blink.Native_SVGFEDisplacementMapElement_yChannelSelector_Getter(this);
+ AnimatedEnumeration get yChannelSelector => _blink.BlinkSVGFEDisplacementMapElement.$yChannelSelector_Getter(this);
@DomName('SVGFEDisplacementMapElement.height')
@DocsEditable()
- AnimatedLength get height => _blink.Native_SVGFEDisplacementMapElement_height_Getter(this);
+ AnimatedLength get height => _blink.BlinkSVGFEDisplacementMapElement.$height_Getter(this);
@DomName('SVGFEDisplacementMapElement.result')
@DocsEditable()
- AnimatedString get result => _blink.Native_SVGFEDisplacementMapElement_result_Getter(this);
+ AnimatedString get result => _blink.BlinkSVGFEDisplacementMapElement.$result_Getter(this);
@DomName('SVGFEDisplacementMapElement.width')
@DocsEditable()
- AnimatedLength get width => _blink.Native_SVGFEDisplacementMapElement_width_Getter(this);
+ AnimatedLength get width => _blink.BlinkSVGFEDisplacementMapElement.$width_Getter(this);
@DomName('SVGFEDisplacementMapElement.x')
@DocsEditable()
- AnimatedLength get x => _blink.Native_SVGFEDisplacementMapElement_x_Getter(this);
+ AnimatedLength get x => _blink.BlinkSVGFEDisplacementMapElement.$x_Getter(this);
@DomName('SVGFEDisplacementMapElement.y')
@DocsEditable()
- AnimatedLength get y => _blink.Native_SVGFEDisplacementMapElement_y_Getter(this);
+ AnimatedLength get y => _blink.BlinkSVGFEDisplacementMapElement.$y_Getter(this);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -2288,11 +2288,11 @@ class FEDistantLightElement extends SvgElement {
@DomName('SVGFEDistantLightElement.azimuth')
@DocsEditable()
- AnimatedNumber get azimuth => _blink.Native_SVGFEDistantLightElement_azimuth_Getter(this);
+ AnimatedNumber get azimuth => _blink.BlinkSVGFEDistantLightElement.$azimuth_Getter(this);
@DomName('SVGFEDistantLightElement.elevation')
@DocsEditable()
- AnimatedNumber get elevation => _blink.Native_SVGFEDistantLightElement_elevation_Getter(this);
+ AnimatedNumber get elevation => _blink.BlinkSVGFEDistantLightElement.$elevation_Getter(this);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -2328,23 +2328,23 @@ class FEFloodElement extends SvgElement implements FilterPrimitiveStandardAttrib
@DomName('SVGFEFloodElement.height')
@DocsEditable()
- AnimatedLength get height => _blink.Native_SVGFEFloodElement_height_Getter(this);
+ AnimatedLength get height => _blink.BlinkSVGFEFloodElement.$height_Getter(this);
@DomName('SVGFEFloodElement.result')
@DocsEditable()
- AnimatedString get result => _blink.Native_SVGFEFloodElement_result_Getter(this);
+ AnimatedString get result => _blink.BlinkSVGFEFloodElement.$result_Getter(this);
@DomName('SVGFEFloodElement.width')
@DocsEditable()
- AnimatedLength get width => _blink.Native_SVGFEFloodElement_width_Getter(this);
+ AnimatedLength get width => _blink.BlinkSVGFEFloodElement.$width_Getter(this);
@DomName('SVGFEFloodElement.x')
@DocsEditable()
- AnimatedLength get x => _blink.Native_SVGFEFloodElement_x_Getter(this);
+ AnimatedLength get x => _blink.BlinkSVGFEFloodElement.$x_Getter(this);
@DomName('SVGFEFloodElement.y')
@DocsEditable()
- AnimatedLength get y => _blink.Native_SVGFEFloodElement_y_Getter(this);
+ AnimatedLength get y => _blink.BlinkSVGFEFloodElement.$y_Getter(this);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -2508,39 +2508,39 @@ class FEGaussianBlurElement extends SvgElement implements FilterPrimitiveStandar
@DomName('SVGFEGaussianBlurElement.in1')
@DocsEditable()
- AnimatedString get in1 => _blink.Native_SVGFEGaussianBlurElement_in1_Getter(this);
+ AnimatedString get in1 => _blink.BlinkSVGFEGaussianBlurElement.$in1_Getter(this);
@DomName('SVGFEGaussianBlurElement.stdDeviationX')
@DocsEditable()
- AnimatedNumber get stdDeviationX => _blink.Native_SVGFEGaussianBlurElement_stdDeviationX_Getter(this);
+ AnimatedNumber get stdDeviationX => _blink.BlinkSVGFEGaussianBlurElement.$stdDeviationX_Getter(this);
@DomName('SVGFEGaussianBlurElement.stdDeviationY')
@DocsEditable()
- AnimatedNumber get stdDeviationY => _blink.Native_SVGFEGaussianBlurElement_stdDeviationY_Getter(this);
+ AnimatedNumber get stdDeviationY => _blink.BlinkSVGFEGaussianBlurElement.$stdDeviationY_Getter(this);
@DomName('SVGFEGaussianBlurElement.setStdDeviation')
@DocsEditable()
- void setStdDeviation(num stdDeviationX, num stdDeviationY) => _blink.Native_SVGFEGaussianBlurElement_setStdDeviation_Callback(this, stdDeviationX, stdDeviationY);
+ void setStdDeviation(num stdDeviationX, num stdDeviationY) => _blink.BlinkSVGFEGaussianBlurElement.$setStdDeviation_Callback(this, stdDeviationX, stdDeviationY);
@DomName('SVGFEGaussianBlurElement.height')
@DocsEditable()
- AnimatedLength get height => _blink.Native_SVGFEGaussianBlurElement_height_Getter(this);
+ AnimatedLength get height => _blink.BlinkSVGFEGaussianBlurElement.$height_Getter(this);
@DomName('SVGFEGaussianBlurElement.result')
@DocsEditable()
- AnimatedString get result => _blink.Native_SVGFEGaussianBlurElement_result_Getter(this);
+ AnimatedString get result => _blink.BlinkSVGFEGaussianBlurElement.$result_Getter(this);
@DomName('SVGFEGaussianBlurElement.width')
@DocsEditable()
- AnimatedLength get width => _blink.Native_SVGFEGaussianBlurElement_width_Getter(this);
+ AnimatedLength get width => _blink.BlinkSVGFEGaussianBlurElement.$width_Getter(this);
@DomName('SVGFEGaussianBlurElement.x')
@DocsEditable()
- AnimatedLength get x => _blink.Native_SVGFEGaussianBlurElement_x_Getter(this);
+ AnimatedLength get x => _blink.BlinkSVGFEGaussianBlurElement.$x_Getter(this);
@DomName('SVGFEGaussianBlurElement.y')
@DocsEditable()
- AnimatedLength get y => _blink.Native_SVGFEGaussianBlurElement_y_Getter(this);
+ AnimatedLength get y => _blink.BlinkSVGFEGaussianBlurElement.$y_Getter(this);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -2576,31 +2576,31 @@ class FEImageElement extends SvgElement implements FilterPrimitiveStandardAttrib
@DomName('SVGFEImageElement.preserveAspectRatio')
@DocsEditable()
- AnimatedPreserveAspectRatio get preserveAspectRatio => _blink.Native_SVGFEImageElement_preserveAspectRatio_Getter(this);
+ AnimatedPreserveAspectRatio get preserveAspectRatio => _blink.BlinkSVGFEImageElement.$preserveAspectRatio_Getter(this);
@DomName('SVGFEImageElement.height')
@DocsEditable()
- AnimatedLength get height => _blink.Native_SVGFEImageElement_height_Getter(this);
+ AnimatedLength get height => _blink.BlinkSVGFEImageElement.$height_Getter(this);
@DomName('SVGFEImageElement.result')
@DocsEditable()
- AnimatedString get result => _blink.Native_SVGFEImageElement_result_Getter(this);
+ AnimatedString get result => _blink.BlinkSVGFEImageElement.$result_Getter(this);
@DomName('SVGFEImageElement.width')
@DocsEditable()
- AnimatedLength get width => _blink.Native_SVGFEImageElement_width_Getter(this);
+ AnimatedLength get width => _blink.BlinkSVGFEImageElement.$width_Getter(this);
@DomName('SVGFEImageElement.x')
@DocsEditable()
- AnimatedLength get x => _blink.Native_SVGFEImageElement_x_Getter(this);
+ AnimatedLength get x => _blink.BlinkSVGFEImageElement.$x_Getter(this);
@DomName('SVGFEImageElement.y')
@DocsEditable()
- AnimatedLength get y => _blink.Native_SVGFEImageElement_y_Getter(this);
+ AnimatedLength get y => _blink.BlinkSVGFEImageElement.$y_Getter(this);
@DomName('SVGFEImageElement.href')
@DocsEditable()
- AnimatedString get href => _blink.Native_SVGFEImageElement_href_Getter(this);
+ AnimatedString get href => _blink.BlinkSVGFEImageElement.$href_Getter(this);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -2636,23 +2636,23 @@ class FEMergeElement extends SvgElement implements FilterPrimitiveStandardAttrib
@DomName('SVGFEMergeElement.height')
@DocsEditable()
- AnimatedLength get height => _blink.Native_SVGFEMergeElement_height_Getter(this);
+ AnimatedLength get height => _blink.BlinkSVGFEMergeElement.$height_Getter(this);
@DomName('SVGFEMergeElement.result')
@DocsEditable()
- AnimatedString get result => _blink.Native_SVGFEMergeElement_result_Getter(this);
+ AnimatedString get result => _blink.BlinkSVGFEMergeElement.$result_Getter(this);
@DomName('SVGFEMergeElement.width')
@DocsEditable()
- AnimatedLength get width => _blink.Native_SVGFEMergeElement_width_Getter(this);
+ AnimatedLength get width => _blink.BlinkSVGFEMergeElement.$width_Getter(this);
@DomName('SVGFEMergeElement.x')
@DocsEditable()
- AnimatedLength get x => _blink.Native_SVGFEMergeElement_x_Getter(this);
+ AnimatedLength get x => _blink.BlinkSVGFEMergeElement.$x_Getter(this);
@DomName('SVGFEMergeElement.y')
@DocsEditable()
- AnimatedLength get y => _blink.Native_SVGFEMergeElement_y_Getter(this);
+ AnimatedLength get y => _blink.BlinkSVGFEMergeElement.$y_Getter(this);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -2688,7 +2688,7 @@ class FEMergeNodeElement extends SvgElement {
@DomName('SVGFEMergeNodeElement.in1')
@DocsEditable()
- AnimatedString get in1 => _blink.Native_SVGFEMergeNodeElement_in1_Getter(this);
+ AnimatedString get in1 => _blink.BlinkSVGFEMergeNodeElement.$in1_Getter(this);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -2729,43 +2729,43 @@ class FEMorphologyElement extends SvgElement implements FilterPrimitiveStandardA
@DomName('SVGFEMorphologyElement.in1')
@DocsEditable()
- AnimatedString get in1 => _blink.Native_SVGFEMorphologyElement_in1_Getter(this);
+ AnimatedString get in1 => _blink.BlinkSVGFEMorphologyElement.$in1_Getter(this);
@DomName('SVGFEMorphologyElement.operator')
@DocsEditable()
- AnimatedEnumeration get operator => _blink.Native_SVGFEMorphologyElement_operator_Getter(this);
+ AnimatedEnumeration get operator => _blink.BlinkSVGFEMorphologyElement.$operator_Getter(this);
@DomName('SVGFEMorphologyElement.radiusX')
@DocsEditable()
- AnimatedNumber get radiusX => _blink.Native_SVGFEMorphologyElement_radiusX_Getter(this);
+ AnimatedNumber get radiusX => _blink.BlinkSVGFEMorphologyElement.$radiusX_Getter(this);
@DomName('SVGFEMorphologyElement.radiusY')
@DocsEditable()
- AnimatedNumber get radiusY => _blink.Native_SVGFEMorphologyElement_radiusY_Getter(this);
+ AnimatedNumber get radiusY => _blink.BlinkSVGFEMorphologyElement.$radiusY_Getter(this);
@DomName('SVGFEMorphologyElement.setRadius')
@DocsEditable()
- void setRadius(num radiusX, num radiusY) => _blink.Native_SVGFEMorphologyElement_setRadius_Callback(this, radiusX, radiusY);
+ void setRadius(num radiusX, num radiusY) => _blink.BlinkSVGFEMorphologyElement.$setRadius_Callback(this, radiusX, radiusY);
@DomName('SVGFEMorphologyElement.height')
@DocsEditable()
- AnimatedLength get height => _blink.Native_SVGFEMorphologyElement_height_Getter(this);
+ AnimatedLength get height => _blink.BlinkSVGFEMorphologyElement.$height_Getter(this);
@DomName('SVGFEMorphologyElement.result')
@DocsEditable()
- AnimatedString get result => _blink.Native_SVGFEMorphologyElement_result_Getter(this);
+ AnimatedString get result => _blink.BlinkSVGFEMorphologyElement.$result_Getter(this);
@DomName('SVGFEMorphologyElement.width')
@DocsEditable()
- AnimatedLength get width => _blink.Native_SVGFEMorphologyElement_width_Getter(this);
+ AnimatedLength get width => _blink.BlinkSVGFEMorphologyElement.$width_Getter(this);
@DomName('SVGFEMorphologyElement.x')
@DocsEditable()
- AnimatedLength get x => _blink.Native_SVGFEMorphologyElement_x_Getter(this);
+ AnimatedLength get x => _blink.BlinkSVGFEMorphologyElement.$x_Getter(this);
@DomName('SVGFEMorphologyElement.y')
@DocsEditable()
- AnimatedLength get y => _blink.Native_SVGFEMorphologyElement_y_Getter(this);
+ AnimatedLength get y => _blink.BlinkSVGFEMorphologyElement.$y_Getter(this);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -2801,35 +2801,35 @@ class FEOffsetElement extends SvgElement implements FilterPrimitiveStandardAttri
@DomName('SVGFEOffsetElement.dx')
@DocsEditable()
- AnimatedNumber get dx => _blink.Native_SVGFEOffsetElement_dx_Getter(this);
+ AnimatedNumber get dx => _blink.BlinkSVGFEOffsetElement.$dx_Getter(this);
@DomName('SVGFEOffsetElement.dy')
@DocsEditable()
- AnimatedNumber get dy => _blink.Native_SVGFEOffsetElement_dy_Getter(this);
+ AnimatedNumber get dy => _blink.BlinkSVGFEOffsetElement.$dy_Getter(this);
@DomName('SVGFEOffsetElement.in1')
@DocsEditable()
- AnimatedString get in1 => _blink.Native_SVGFEOffsetElement_in1_Getter(this);
+ AnimatedString get in1 => _blink.BlinkSVGFEOffsetElement.$in1_Getter(this);
@DomName('SVGFEOffsetElement.height')
@DocsEditable()
- AnimatedLength get height => _blink.Native_SVGFEOffsetElement_height_Getter(this);
+ AnimatedLength get height => _blink.BlinkSVGFEOffsetElement.$height_Getter(this);
@DomName('SVGFEOffsetElement.result')
@DocsEditable()
- AnimatedString get result => _blink.Native_SVGFEOffsetElement_result_Getter(this);
+ AnimatedString get result => _blink.BlinkSVGFEOffsetElement.$result_Getter(this);
@DomName('SVGFEOffsetElement.width')
@DocsEditable()
- AnimatedLength get width => _blink.Native_SVGFEOffsetElement_width_Getter(this);
+ AnimatedLength get width => _blink.BlinkSVGFEOffsetElement.$width_Getter(this);
@DomName('SVGFEOffsetElement.x')
@DocsEditable()
- AnimatedLength get x => _blink.Native_SVGFEOffsetElement_x_Getter(this);
+ AnimatedLength get x => _blink.BlinkSVGFEOffsetElement.$x_Getter(this);
@DomName('SVGFEOffsetElement.y')
@DocsEditable()
- AnimatedLength get y => _blink.Native_SVGFEOffsetElement_y_Getter(this);
+ AnimatedLength get y => _blink.BlinkSVGFEOffsetElement.$y_Getter(this);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -2865,15 +2865,15 @@ class FEPointLightElement extends SvgElement {
@DomName('SVGFEPointLightElement.x')
@DocsEditable()
- AnimatedNumber get x => _blink.Native_SVGFEPointLightElement_x_Getter(this);
+ AnimatedNumber get x => _blink.BlinkSVGFEPointLightElement.$x_Getter(this);
@DomName('SVGFEPointLightElement.y')
@DocsEditable()
- AnimatedNumber get y => _blink.Native_SVGFEPointLightElement_y_Getter(this);
+ AnimatedNumber get y => _blink.BlinkSVGFEPointLightElement.$y_Getter(this);
@DomName('SVGFEPointLightElement.z')
@DocsEditable()
- AnimatedNumber get z => _blink.Native_SVGFEPointLightElement_z_Getter(this);
+ AnimatedNumber get z => _blink.BlinkSVGFEPointLightElement.$z_Getter(this);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -2909,39 +2909,39 @@ class FESpecularLightingElement extends SvgElement implements FilterPrimitiveSta
@DomName('SVGFESpecularLightingElement.in1')
@DocsEditable()
- AnimatedString get in1 => _blink.Native_SVGFESpecularLightingElement_in1_Getter(this);
+ AnimatedString get in1 => _blink.BlinkSVGFESpecularLightingElement.$in1_Getter(this);
@DomName('SVGFESpecularLightingElement.specularConstant')
@DocsEditable()
- AnimatedNumber get specularConstant => _blink.Native_SVGFESpecularLightingElement_specularConstant_Getter(this);
+ AnimatedNumber get specularConstant => _blink.BlinkSVGFESpecularLightingElement.$specularConstant_Getter(this);
@DomName('SVGFESpecularLightingElement.specularExponent')
@DocsEditable()
- AnimatedNumber get specularExponent => _blink.Native_SVGFESpecularLightingElement_specularExponent_Getter(this);
+ AnimatedNumber get specularExponent => _blink.BlinkSVGFESpecularLightingElement.$specularExponent_Getter(this);
@DomName('SVGFESpecularLightingElement.surfaceScale')
@DocsEditable()
- AnimatedNumber get surfaceScale => _blink.Native_SVGFESpecularLightingElement_surfaceScale_Getter(this);
+ AnimatedNumber get surfaceScale => _blink.BlinkSVGFESpecularLightingElement.$surfaceScale_Getter(this);
@DomName('SVGFESpecularLightingElement.height')
@DocsEditable()
- AnimatedLength get height => _blink.Native_SVGFESpecularLightingElement_height_Getter(this);
+ AnimatedLength get height => _blink.BlinkSVGFESpecularLightingElement.$height_Getter(this);
@DomName('SVGFESpecularLightingElement.result')
@DocsEditable()
- AnimatedString get result => _blink.Native_SVGFESpecularLightingElement_result_Getter(this);
+ AnimatedString get result => _blink.BlinkSVGFESpecularLightingElement.$result_Getter(this);
@DomName('SVGFESpecularLightingElement.width')
@DocsEditable()
- AnimatedLength get width => _blink.Native_SVGFESpecularLightingElement_width_Getter(this);
+ AnimatedLength get width => _blink.BlinkSVGFESpecularLightingElement.$width_Getter(this);
@DomName('SVGFESpecularLightingElement.x')
@DocsEditable()
- AnimatedLength get x => _blink.Native_SVGFESpecularLightingElement_x_Getter(this);
+ AnimatedLength get x => _blink.BlinkSVGFESpecularLightingElement.$x_Getter(this);
@DomName('SVGFESpecularLightingElement.y')
@DocsEditable()
- AnimatedLength get y => _blink.Native_SVGFESpecularLightingElement_y_Getter(this);
+ AnimatedLength get y => _blink.BlinkSVGFESpecularLightingElement.$y_Getter(this);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -2977,35 +2977,35 @@ class FESpotLightElement extends SvgElement {
@DomName('SVGFESpotLightElement.limitingConeAngle')
@DocsEditable()
- AnimatedNumber get limitingConeAngle => _blink.Native_SVGFESpotLightElement_limitingConeAngle_Getter(this);
+ AnimatedNumber get limitingConeAngle => _blink.BlinkSVGFESpotLightElement.$limitingConeAngle_Getter(this);
@DomName('SVGFESpotLightElement.pointsAtX')
@DocsEditable()
- AnimatedNumber get pointsAtX => _blink.Native_SVGFESpotLightElement_pointsAtX_Getter(this);
+ AnimatedNumber get pointsAtX => _blink.BlinkSVGFESpotLightElement.$pointsAtX_Getter(this);
@DomName('SVGFESpotLightElement.pointsAtY')
@DocsEditable()
- AnimatedNumber get pointsAtY => _blink.Native_SVGFESpotLightElement_pointsAtY_Getter(this);
+ AnimatedNumber get pointsAtY => _blink.BlinkSVGFESpotLightElement.$pointsAtY_Getter(this);
@DomName('SVGFESpotLightElement.pointsAtZ')
@DocsEditable()
- AnimatedNumber get pointsAtZ => _blink.Native_SVGFESpotLightElement_pointsAtZ_Getter(this);
+ AnimatedNumber get pointsAtZ => _blink.BlinkSVGFESpotLightElement.$pointsAtZ_Getter(this);
@DomName('SVGFESpotLightElement.specularExponent')
@DocsEditable()
- AnimatedNumber get specularExponent => _blink.Native_SVGFESpotLightElement_specularExponent_Getter(this);
+ AnimatedNumber get specularExponent => _blink.BlinkSVGFESpotLightElement.$specularExponent_Getter(this);
@DomName('SVGFESpotLightElement.x')
@DocsEditable()
- AnimatedNumber get x => _blink.Native_SVGFESpotLightElement_x_Getter(this);
+ AnimatedNumber get x => _blink.BlinkSVGFESpotLightElement.$x_Getter(this);
@DomName('SVGFESpotLightElement.y')
@DocsEditable()
- AnimatedNumber get y => _blink.Native_SVGFESpotLightElement_y_Getter(this);
+ AnimatedNumber get y => _blink.BlinkSVGFESpotLightElement.$y_Getter(this);
@DomName('SVGFESpotLightElement.z')
@DocsEditable()
- AnimatedNumber get z => _blink.Native_SVGFESpotLightElement_z_Getter(this);
+ AnimatedNumber get z => _blink.BlinkSVGFESpotLightElement.$z_Getter(this);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -3041,27 +3041,27 @@ class FETileElement extends SvgElement implements FilterPrimitiveStandardAttribu
@DomName('SVGFETileElement.in1')
@DocsEditable()
- AnimatedString get in1 => _blink.Native_SVGFETileElement_in1_Getter(this);
+ AnimatedString get in1 => _blink.BlinkSVGFETileElement.$in1_Getter(this);
@DomName('SVGFETileElement.height')
@DocsEditable()
- AnimatedLength get height => _blink.Native_SVGFETileElement_height_Getter(this);
+ AnimatedLength get height => _blink.BlinkSVGFETileElement.$height_Getter(this);
@DomName('SVGFETileElement.result')
@DocsEditable()
- AnimatedString get result => _blink.Native_SVGFETileElement_result_Getter(this);
+ AnimatedString get result => _blink.BlinkSVGFETileElement.$result_Getter(this);
@DomName('SVGFETileElement.width')
@DocsEditable()
- AnimatedLength get width => _blink.Native_SVGFETileElement_width_Getter(this);
+ AnimatedLength get width => _blink.BlinkSVGFETileElement.$width_Getter(this);
@DomName('SVGFETileElement.x')
@DocsEditable()
- AnimatedLength get x => _blink.Native_SVGFETileElement_x_Getter(this);
+ AnimatedLength get x => _blink.BlinkSVGFETileElement.$x_Getter(this);
@DomName('SVGFETileElement.y')
@DocsEditable()
- AnimatedLength get y => _blink.Native_SVGFETileElement_y_Getter(this);
+ AnimatedLength get y => _blink.BlinkSVGFETileElement.$y_Getter(this);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -3121,47 +3121,47 @@ class FETurbulenceElement extends SvgElement implements FilterPrimitiveStandardA
@DomName('SVGFETurbulenceElement.baseFrequencyX')
@DocsEditable()
- AnimatedNumber get baseFrequencyX => _blink.Native_SVGFETurbulenceElement_baseFrequencyX_Getter(this);
+ AnimatedNumber get baseFrequencyX => _blink.BlinkSVGFETurbulenceElement.$baseFrequencyX_Getter(this);
@DomName('SVGFETurbulenceElement.baseFrequencyY')
@DocsEditable()
- AnimatedNumber get baseFrequencyY => _blink.Native_SVGFETurbulenceElement_baseFrequencyY_Getter(this);
+ AnimatedNumber get baseFrequencyY => _blink.BlinkSVGFETurbulenceElement.$baseFrequencyY_Getter(this);
@DomName('SVGFETurbulenceElement.numOctaves')
@DocsEditable()
- AnimatedInteger get numOctaves => _blink.Native_SVGFETurbulenceElement_numOctaves_Getter(this);
+ AnimatedInteger get numOctaves => _blink.BlinkSVGFETurbulenceElement.$numOctaves_Getter(this);
@DomName('SVGFETurbulenceElement.seed')
@DocsEditable()
- AnimatedNumber get seed => _blink.Native_SVGFETurbulenceElement_seed_Getter(this);
+ AnimatedNumber get seed => _blink.BlinkSVGFETurbulenceElement.$seed_Getter(this);
@DomName('SVGFETurbulenceElement.stitchTiles')
@DocsEditable()
- AnimatedEnumeration get stitchTiles => _blink.Native_SVGFETurbulenceElement_stitchTiles_Getter(this);
+ AnimatedEnumeration get stitchTiles => _blink.BlinkSVGFETurbulenceElement.$stitchTiles_Getter(this);
@DomName('SVGFETurbulenceElement.type')
@DocsEditable()
- AnimatedEnumeration get type => _blink.Native_SVGFETurbulenceElement_type_Getter(this);
+ AnimatedEnumeration get type => _blink.BlinkSVGFETurbulenceElement.$type_Getter(this);
@DomName('SVGFETurbulenceElement.height')
@DocsEditable()
- AnimatedLength get height => _blink.Native_SVGFETurbulenceElement_height_Getter(this);
+ AnimatedLength get height => _blink.BlinkSVGFETurbulenceElement.$height_Getter(this);
@DomName('SVGFETurbulenceElement.result')
@DocsEditable()
- AnimatedString get result => _blink.Native_SVGFETurbulenceElement_result_Getter(this);
+ AnimatedString get result => _blink.BlinkSVGFETurbulenceElement.$result_Getter(this);
@DomName('SVGFETurbulenceElement.width')
@DocsEditable()
- AnimatedLength get width => _blink.Native_SVGFETurbulenceElement_width_Getter(this);
+ AnimatedLength get width => _blink.BlinkSVGFETurbulenceElement.$width_Getter(this);
@DomName('SVGFETurbulenceElement.x')
@DocsEditable()
- AnimatedLength get x => _blink.Native_SVGFETurbulenceElement_x_Getter(this);
+ AnimatedLength get x => _blink.BlinkSVGFETurbulenceElement.$x_Getter(this);
@DomName('SVGFETurbulenceElement.y')
@DocsEditable()
- AnimatedLength get y => _blink.Native_SVGFETurbulenceElement_y_Getter(this);
+ AnimatedLength get y => _blink.BlinkSVGFETurbulenceElement.$y_Getter(this);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -3197,43 +3197,43 @@ class FilterElement extends SvgElement implements UriReference {
@DomName('SVGFilterElement.filterResX')
@DocsEditable()
- AnimatedInteger get filterResX => _blink.Native_SVGFilterElement_filterResX_Getter(this);
+ AnimatedInteger get filterResX => _blink.BlinkSVGFilterElement.$filterResX_Getter(this);
@DomName('SVGFilterElement.filterResY')
@DocsEditable()
- AnimatedInteger get filterResY => _blink.Native_SVGFilterElement_filterResY_Getter(this);
+ AnimatedInteger get filterResY => _blink.BlinkSVGFilterElement.$filterResY_Getter(this);
@DomName('SVGFilterElement.filterUnits')
@DocsEditable()
- AnimatedEnumeration get filterUnits => _blink.Native_SVGFilterElement_filterUnits_Getter(this);
+ AnimatedEnumeration get filterUnits => _blink.BlinkSVGFilterElement.$filterUnits_Getter(this);
@DomName('SVGFilterElement.height')
@DocsEditable()
- AnimatedLength get height => _blink.Native_SVGFilterElement_height_Getter(this);
+ AnimatedLength get height => _blink.BlinkSVGFilterElement.$height_Getter(this);
@DomName('SVGFilterElement.primitiveUnits')
@DocsEditable()
- AnimatedEnumeration get primitiveUnits => _blink.Native_SVGFilterElement_primitiveUnits_Getter(this);
+ AnimatedEnumeration get primitiveUnits => _blink.BlinkSVGFilterElement.$primitiveUnits_Getter(this);
@DomName('SVGFilterElement.width')
@DocsEditable()
- AnimatedLength get width => _blink.Native_SVGFilterElement_width_Getter(this);
+ AnimatedLength get width => _blink.BlinkSVGFilterElement.$width_Getter(this);
@DomName('SVGFilterElement.x')
@DocsEditable()
- AnimatedLength get x => _blink.Native_SVGFilterElement_x_Getter(this);
+ AnimatedLength get x => _blink.BlinkSVGFilterElement.$x_Getter(this);
@DomName('SVGFilterElement.y')
@DocsEditable()
- AnimatedLength get y => _blink.Native_SVGFilterElement_y_Getter(this);
+ AnimatedLength get y => _blink.BlinkSVGFilterElement.$y_Getter(this);
@DomName('SVGFilterElement.setFilterRes')
@DocsEditable()
- void setFilterRes(int filterResX, int filterResY) => _blink.Native_SVGFilterElement_setFilterRes_Callback(this, filterResX, filterResY);
+ void setFilterRes(int filterResX, int filterResY) => _blink.BlinkSVGFilterElement.$setFilterRes_Callback(this, filterResX, filterResY);
@DomName('SVGFilterElement.href')
@DocsEditable()
- AnimatedString get href => _blink.Native_SVGFilterElement_href_Getter(this);
+ AnimatedString get href => _blink.BlinkSVGFilterElement.$href_Getter(this);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -3252,23 +3252,23 @@ abstract class FilterPrimitiveStandardAttributes extends NativeFieldWrapperClass
@DomName('SVGFilterPrimitiveStandardAttributes.height')
@DocsEditable()
- AnimatedLength get height => _blink.Native_SVGFilterPrimitiveStandardAttributes_height_Getter(this);
+ AnimatedLength get height => _blink.BlinkSVGFilterPrimitiveStandardAttributes.$height_Getter(this);
@DomName('SVGFilterPrimitiveStandardAttributes.result')
@DocsEditable()
- AnimatedString get result => _blink.Native_SVGFilterPrimitiveStandardAttributes_result_Getter(this);
+ AnimatedString get result => _blink.BlinkSVGFilterPrimitiveStandardAttributes.$result_Getter(this);
@DomName('SVGFilterPrimitiveStandardAttributes.width')
@DocsEditable()
- AnimatedLength get width => _blink.Native_SVGFilterPrimitiveStandardAttributes_width_Getter(this);
+ AnimatedLength get width => _blink.BlinkSVGFilterPrimitiveStandardAttributes.$width_Getter(this);
@DomName('SVGFilterPrimitiveStandardAttributes.x')
@DocsEditable()
- AnimatedLength get x => _blink.Native_SVGFilterPrimitiveStandardAttributes_x_Getter(this);
+ AnimatedLength get x => _blink.BlinkSVGFilterPrimitiveStandardAttributes.$x_Getter(this);
@DomName('SVGFilterPrimitiveStandardAttributes.y')
@DocsEditable()
- AnimatedLength get y => _blink.Native_SVGFilterPrimitiveStandardAttributes_y_Getter(this);
+ AnimatedLength get y => _blink.BlinkSVGFilterPrimitiveStandardAttributes.$y_Getter(this);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -3287,11 +3287,11 @@ abstract class FitToViewBox extends NativeFieldWrapperClass2 {
@DomName('SVGFitToViewBox.preserveAspectRatio')
@DocsEditable()
- AnimatedPreserveAspectRatio get preserveAspectRatio => _blink.Native_SVGFitToViewBox_preserveAspectRatio_Getter(this);
+ AnimatedPreserveAspectRatio get preserveAspectRatio => _blink.BlinkSVGFitToViewBox.$preserveAspectRatio_Getter(this);
@DomName('SVGFitToViewBox.viewBox')
@DocsEditable()
- AnimatedRect get viewBox => _blink.Native_SVGFitToViewBox_viewBox_Getter(this);
+ AnimatedRect get viewBox => _blink.BlinkSVGFitToViewBox.$viewBox_Getter(this);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -3326,19 +3326,19 @@ class ForeignObjectElement extends GraphicsElement {
@DomName('SVGForeignObjectElement.height')
@DocsEditable()
- AnimatedLength get height => _blink.Native_SVGForeignObjectElement_height_Getter(this);
+ AnimatedLength get height => _blink.BlinkSVGForeignObjectElement.$height_Getter(this);
@DomName('SVGForeignObjectElement.width')
@DocsEditable()
- AnimatedLength get width => _blink.Native_SVGForeignObjectElement_width_Getter(this);
+ AnimatedLength get width => _blink.BlinkSVGForeignObjectElement.$width_Getter(this);
@DomName('SVGForeignObjectElement.x')
@DocsEditable()
- AnimatedLength get x => _blink.Native_SVGForeignObjectElement_x_Getter(this);
+ AnimatedLength get x => _blink.BlinkSVGForeignObjectElement.$x_Getter(this);
@DomName('SVGForeignObjectElement.y')
@DocsEditable()
- AnimatedLength get y => _blink.Native_SVGForeignObjectElement_y_Getter(this);
+ AnimatedLength get y => _blink.BlinkSVGForeignObjectElement.$y_Getter(this);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -3389,12 +3389,12 @@ class GeometryElement extends GraphicsElement {
@DomName('SVGGeometryElement.isPointInFill')
@DocsEditable()
@Experimental() // untriaged
- bool isPointInFill(Point point) => _blink.Native_SVGGeometryElement_isPointInFill_Callback(this, point);
+ bool isPointInFill(Point point) => _blink.BlinkSVGGeometryElement.$isPointInFill_Callback(this, point);
@DomName('SVGGeometryElement.isPointInStroke')
@DocsEditable()
@Experimental() // untriaged
- bool isPointInStroke(Point point) => _blink.Native_SVGGeometryElement_isPointInStroke_Callback(this, point);
+ bool isPointInStroke(Point point) => _blink.BlinkSVGGeometryElement.$isPointInStroke_Callback(this, point);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -3420,57 +3420,57 @@ class GraphicsElement extends SvgElement implements Tests {
@DomName('SVGGraphicsElement.farthestViewportElement')
@DocsEditable()
@Experimental() // untriaged
- SvgElement get farthestViewportElement => _blink.Native_SVGGraphicsElement_farthestViewportElement_Getter(this);
+ SvgElement get farthestViewportElement => _blink.BlinkSVGGraphicsElement.$farthestViewportElement_Getter(this);
@DomName('SVGGraphicsElement.nearestViewportElement')
@DocsEditable()
@Experimental() // untriaged
- SvgElement get nearestViewportElement => _blink.Native_SVGGraphicsElement_nearestViewportElement_Getter(this);
+ SvgElement get nearestViewportElement => _blink.BlinkSVGGraphicsElement.$nearestViewportElement_Getter(this);
@DomName('SVGGraphicsElement.transform')
@DocsEditable()
@Experimental() // untriaged
- AnimatedTransformList get transform => _blink.Native_SVGGraphicsElement_transform_Getter(this);
+ AnimatedTransformList get transform => _blink.BlinkSVGGraphicsElement.$transform_Getter(this);
@DomName('SVGGraphicsElement.getBBox')
@DocsEditable()
@Experimental() // untriaged
- Rect getBBox() => _blink.Native_SVGGraphicsElement_getBBox_Callback(this);
+ Rect getBBox() => _blink.BlinkSVGGraphicsElement.$getBBox_Callback(this);
@DomName('SVGGraphicsElement.getCTM')
@DocsEditable()
@Experimental() // untriaged
- Matrix getCtm() => _blink.Native_SVGGraphicsElement_getCTM_Callback(this);
+ Matrix getCtm() => _blink.BlinkSVGGraphicsElement.$getCTM_Callback(this);
@DomName('SVGGraphicsElement.getScreenCTM')
@DocsEditable()
@Experimental() // untriaged
- Matrix getScreenCtm() => _blink.Native_SVGGraphicsElement_getScreenCTM_Callback(this);
+ Matrix getScreenCtm() => _blink.BlinkSVGGraphicsElement.$getScreenCTM_Callback(this);
@DomName('SVGGraphicsElement.getTransformToElement')
@DocsEditable()
@Experimental() // untriaged
- Matrix getTransformToElement(SvgElement element) => _blink.Native_SVGGraphicsElement_getTransformToElement_Callback(this, element);
+ Matrix getTransformToElement(SvgElement element) => _blink.BlinkSVGGraphicsElement.$getTransformToElement_Callback(this, element);
@DomName('SVGGraphicsElement.requiredExtensions')
@DocsEditable()
@Experimental() // untriaged
- StringList get requiredExtensions => _blink.Native_SVGGraphicsElement_requiredExtensions_Getter(this);
+ StringList get requiredExtensions => _blink.BlinkSVGGraphicsElement.$requiredExtensions_Getter(this);
@DomName('SVGGraphicsElement.requiredFeatures')
@DocsEditable()
@Experimental() // untriaged
- StringList get requiredFeatures => _blink.Native_SVGGraphicsElement_requiredFeatures_Getter(this);
+ StringList get requiredFeatures => _blink.BlinkSVGGraphicsElement.$requiredFeatures_Getter(this);
@DomName('SVGGraphicsElement.systemLanguage')
@DocsEditable()
@Experimental() // untriaged
- StringList get systemLanguage => _blink.Native_SVGGraphicsElement_systemLanguage_Getter(this);
+ StringList get systemLanguage => _blink.BlinkSVGGraphicsElement.$systemLanguage_Getter(this);
@DomName('SVGGraphicsElement.hasExtension')
@DocsEditable()
@Experimental() // untriaged
- bool hasExtension(String extension) => _blink.Native_SVGGraphicsElement_hasExtension_Callback(this, extension);
+ bool hasExtension(String extension) => _blink.BlinkSVGGraphicsElement.$hasExtension_Callback(this, extension);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -3499,27 +3499,27 @@ class ImageElement extends GraphicsElement implements UriReference {
@DomName('SVGImageElement.height')
@DocsEditable()
- AnimatedLength get height => _blink.Native_SVGImageElement_height_Getter(this);
+ AnimatedLength get height => _blink.BlinkSVGImageElement.$height_Getter(this);
@DomName('SVGImageElement.preserveAspectRatio')
@DocsEditable()
- AnimatedPreserveAspectRatio get preserveAspectRatio => _blink.Native_SVGImageElement_preserveAspectRatio_Getter(this);
+ AnimatedPreserveAspectRatio get preserveAspectRatio => _blink.BlinkSVGImageElement.$preserveAspectRatio_Getter(this);
@DomName('SVGImageElement.width')
@DocsEditable()
- AnimatedLength get width => _blink.Native_SVGImageElement_width_Getter(this);
+ AnimatedLength get width => _blink.BlinkSVGImageElement.$width_Getter(this);
@DomName('SVGImageElement.x')
@DocsEditable()
- AnimatedLength get x => _blink.Native_SVGImageElement_x_Getter(this);
+ AnimatedLength get x => _blink.BlinkSVGImageElement.$x_Getter(this);
@DomName('SVGImageElement.y')
@DocsEditable()
- AnimatedLength get y => _blink.Native_SVGImageElement_y_Getter(this);
+ AnimatedLength get y => _blink.BlinkSVGImageElement.$y_Getter(this);
@DomName('SVGImageElement.href')
@DocsEditable()
- AnimatedString get href => _blink.Native_SVGImageElement_href_Getter(this);
+ AnimatedString get href => _blink.BlinkSVGImageElement.$href_Getter(this);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -3582,39 +3582,39 @@ class Length extends NativeFieldWrapperClass2 {
@DomName('SVGLength.unitType')
@DocsEditable()
- int get unitType => _blink.Native_SVGLength_unitType_Getter(this);
+ int get unitType => _blink.BlinkSVGLength.$unitType_Getter(this);
@DomName('SVGLength.value')
@DocsEditable()
- num get value => _blink.Native_SVGLength_value_Getter(this);
+ num get value => _blink.BlinkSVGLength.$value_Getter(this);
@DomName('SVGLength.value')
@DocsEditable()
- void set value(num value) => _blink.Native_SVGLength_value_Setter(this, value);
+ void set value(num value) => _blink.BlinkSVGLength.$value_Setter(this, value);
@DomName('SVGLength.valueAsString')
@DocsEditable()
- String get valueAsString => _blink.Native_SVGLength_valueAsString_Getter(this);
+ String get valueAsString => _blink.BlinkSVGLength.$valueAsString_Getter(this);
@DomName('SVGLength.valueAsString')
@DocsEditable()
- void set valueAsString(String value) => _blink.Native_SVGLength_valueAsString_Setter(this, value);
+ void set valueAsString(String value) => _blink.BlinkSVGLength.$valueAsString_Setter(this, value);
@DomName('SVGLength.valueInSpecifiedUnits')
@DocsEditable()
- num get valueInSpecifiedUnits => _blink.Native_SVGLength_valueInSpecifiedUnits_Getter(this);
+ num get valueInSpecifiedUnits => _blink.BlinkSVGLength.$valueInSpecifiedUnits_Getter(this);
@DomName('SVGLength.valueInSpecifiedUnits')
@DocsEditable()
- void set valueInSpecifiedUnits(num value) => _blink.Native_SVGLength_valueInSpecifiedUnits_Setter(this, value);
+ void set valueInSpecifiedUnits(num value) => _blink.BlinkSVGLength.$valueInSpecifiedUnits_Setter(this, value);
@DomName('SVGLength.convertToSpecifiedUnits')
@DocsEditable()
- void convertToSpecifiedUnits(int unitType) => _blink.Native_SVGLength_convertToSpecifiedUnits_Callback(this, unitType);
+ void convertToSpecifiedUnits(int unitType) => _blink.BlinkSVGLength.$convertToSpecifiedUnits_Callback(this, unitType);
@DomName('SVGLength.newValueSpecifiedUnits')
@DocsEditable()
- void newValueSpecifiedUnits(int unitType, num valueInSpecifiedUnits) => _blink.Native_SVGLength_newValueSpecifiedUnits_Callback(this, unitType, valueInSpecifiedUnits);
+ void newValueSpecifiedUnits(int unitType, num valueInSpecifiedUnits) => _blink.BlinkSVGLength.$newValueSpecifiedUnits_Callback(this, unitType, valueInSpecifiedUnits);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -3633,7 +3633,7 @@ class LengthList extends NativeFieldWrapperClass2 with ListMixin<Length>, Immuta
@DomName('SVGLengthList.numberOfItems')
@DocsEditable()
- int get numberOfItems => _blink.Native_SVGLengthList_numberOfItems_Getter(this);
+ int get numberOfItems => _blink.BlinkSVGLengthList.$numberOfItems_Getter(this);
Length operator[](int index) {
if (index < 0 || index >= length)
@@ -3683,31 +3683,31 @@ class LengthList extends NativeFieldWrapperClass2 with ListMixin<Length>, Immuta
@DomName('SVGLengthList.appendItem')
@DocsEditable()
- Length appendItem(Length item) => _blink.Native_SVGLengthList_appendItem_Callback(this, item);
+ Length appendItem(Length item) => _blink.BlinkSVGLengthList.$appendItem_Callback(this, item);
@DomName('SVGLengthList.clear')
@DocsEditable()
- void clear() => _blink.Native_SVGLengthList_clear_Callback(this);
+ void clear() => _blink.BlinkSVGLengthList.$clear_Callback(this);
@DomName('SVGLengthList.getItem')
@DocsEditable()
- Length getItem(int index) => _blink.Native_SVGLengthList_getItem_Callback(this, index);
+ Length getItem(int index) => _blink.BlinkSVGLengthList.$getItem_Callback(this, index);
@DomName('SVGLengthList.initialize')
@DocsEditable()
- Length initialize(Length item) => _blink.Native_SVGLengthList_initialize_Callback(this, item);
+ Length initialize(Length item) => _blink.BlinkSVGLengthList.$initialize_Callback(this, item);
@DomName('SVGLengthList.insertItemBefore')
@DocsEditable()
- Length insertItemBefore(Length item, int index) => _blink.Native_SVGLengthList_insertItemBefore_Callback(this, item, index);
+ Length insertItemBefore(Length item, int index) => _blink.BlinkSVGLengthList.$insertItemBefore_Callback(this, item, index);
@DomName('SVGLengthList.removeItem')
@DocsEditable()
- Length removeItem(int index) => _blink.Native_SVGLengthList_removeItem_Callback(this, index);
+ Length removeItem(int index) => _blink.BlinkSVGLengthList.$removeItem_Callback(this, index);
@DomName('SVGLengthList.replaceItem')
@DocsEditable()
- Length replaceItem(Length item, int index) => _blink.Native_SVGLengthList_replaceItem_Callback(this, item, index);
+ Length replaceItem(Length item, int index) => _blink.BlinkSVGLengthList.$replaceItem_Callback(this, item, index);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -3736,19 +3736,19 @@ class LineElement extends GeometryElement {
@DomName('SVGLineElement.x1')
@DocsEditable()
- AnimatedLength get x1 => _blink.Native_SVGLineElement_x1_Getter(this);
+ AnimatedLength get x1 => _blink.BlinkSVGLineElement.$x1_Getter(this);
@DomName('SVGLineElement.x2')
@DocsEditable()
- AnimatedLength get x2 => _blink.Native_SVGLineElement_x2_Getter(this);
+ AnimatedLength get x2 => _blink.BlinkSVGLineElement.$x2_Getter(this);
@DomName('SVGLineElement.y1')
@DocsEditable()
- AnimatedLength get y1 => _blink.Native_SVGLineElement_y1_Getter(this);
+ AnimatedLength get y1 => _blink.BlinkSVGLineElement.$y1_Getter(this);
@DomName('SVGLineElement.y2')
@DocsEditable()
- AnimatedLength get y2 => _blink.Native_SVGLineElement_y2_Getter(this);
+ AnimatedLength get y2 => _blink.BlinkSVGLineElement.$y2_Getter(this);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -3777,19 +3777,19 @@ class LinearGradientElement extends _GradientElement {
@DomName('SVGLinearGradientElement.x1')
@DocsEditable()
- AnimatedLength get x1 => _blink.Native_SVGLinearGradientElement_x1_Getter(this);
+ AnimatedLength get x1 => _blink.BlinkSVGLinearGradientElement.$x1_Getter(this);
@DomName('SVGLinearGradientElement.x2')
@DocsEditable()
- AnimatedLength get x2 => _blink.Native_SVGLinearGradientElement_x2_Getter(this);
+ AnimatedLength get x2 => _blink.BlinkSVGLinearGradientElement.$x2_Getter(this);
@DomName('SVGLinearGradientElement.y1')
@DocsEditable()
- AnimatedLength get y1 => _blink.Native_SVGLinearGradientElement_y1_Getter(this);
+ AnimatedLength get y1 => _blink.BlinkSVGLinearGradientElement.$y1_Getter(this);
@DomName('SVGLinearGradientElement.y2')
@DocsEditable()
- AnimatedLength get y2 => _blink.Native_SVGLinearGradientElement_y2_Getter(this);
+ AnimatedLength get y2 => _blink.BlinkSVGLinearGradientElement.$y2_Getter(this);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -3842,47 +3842,47 @@ class MarkerElement extends SvgElement implements FitToViewBox {
@DomName('SVGMarkerElement.markerHeight')
@DocsEditable()
- AnimatedLength get markerHeight => _blink.Native_SVGMarkerElement_markerHeight_Getter(this);
+ AnimatedLength get markerHeight => _blink.BlinkSVGMarkerElement.$markerHeight_Getter(this);
@DomName('SVGMarkerElement.markerUnits')
@DocsEditable()
- AnimatedEnumeration get markerUnits => _blink.Native_SVGMarkerElement_markerUnits_Getter(this);
+ AnimatedEnumeration get markerUnits => _blink.BlinkSVGMarkerElement.$markerUnits_Getter(this);
@DomName('SVGMarkerElement.markerWidth')
@DocsEditable()
- AnimatedLength get markerWidth => _blink.Native_SVGMarkerElement_markerWidth_Getter(this);
+ AnimatedLength get markerWidth => _blink.BlinkSVGMarkerElement.$markerWidth_Getter(this);
@DomName('SVGMarkerElement.orientAngle')
@DocsEditable()
- AnimatedAngle get orientAngle => _blink.Native_SVGMarkerElement_orientAngle_Getter(this);
+ AnimatedAngle get orientAngle => _blink.BlinkSVGMarkerElement.$orientAngle_Getter(this);
@DomName('SVGMarkerElement.orientType')
@DocsEditable()
- AnimatedEnumeration get orientType => _blink.Native_SVGMarkerElement_orientType_Getter(this);
+ AnimatedEnumeration get orientType => _blink.BlinkSVGMarkerElement.$orientType_Getter(this);
@DomName('SVGMarkerElement.refX')
@DocsEditable()
- AnimatedLength get refX => _blink.Native_SVGMarkerElement_refX_Getter(this);
+ AnimatedLength get refX => _blink.BlinkSVGMarkerElement.$refX_Getter(this);
@DomName('SVGMarkerElement.refY')
@DocsEditable()
- AnimatedLength get refY => _blink.Native_SVGMarkerElement_refY_Getter(this);
+ AnimatedLength get refY => _blink.BlinkSVGMarkerElement.$refY_Getter(this);
@DomName('SVGMarkerElement.setOrientToAngle')
@DocsEditable()
- void setOrientToAngle(Angle angle) => _blink.Native_SVGMarkerElement_setOrientToAngle_Callback(this, angle);
+ void setOrientToAngle(Angle angle) => _blink.BlinkSVGMarkerElement.$setOrientToAngle_Callback(this, angle);
@DomName('SVGMarkerElement.setOrientToAuto')
@DocsEditable()
- void setOrientToAuto() => _blink.Native_SVGMarkerElement_setOrientToAuto_Callback(this);
+ void setOrientToAuto() => _blink.BlinkSVGMarkerElement.$setOrientToAuto_Callback(this);
@DomName('SVGMarkerElement.preserveAspectRatio')
@DocsEditable()
- AnimatedPreserveAspectRatio get preserveAspectRatio => _blink.Native_SVGMarkerElement_preserveAspectRatio_Getter(this);
+ AnimatedPreserveAspectRatio get preserveAspectRatio => _blink.BlinkSVGMarkerElement.$preserveAspectRatio_Getter(this);
@DomName('SVGMarkerElement.viewBox')
@DocsEditable()
- AnimatedRect get viewBox => _blink.Native_SVGMarkerElement_viewBox_Getter(this);
+ AnimatedRect get viewBox => _blink.BlinkSVGMarkerElement.$viewBox_Getter(this);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -3911,43 +3911,43 @@ class MaskElement extends SvgElement implements Tests {
@DomName('SVGMaskElement.height')
@DocsEditable()
- AnimatedLength get height => _blink.Native_SVGMaskElement_height_Getter(this);
+ AnimatedLength get height => _blink.BlinkSVGMaskElement.$height_Getter(this);
@DomName('SVGMaskElement.maskContentUnits')
@DocsEditable()
- AnimatedEnumeration get maskContentUnits => _blink.Native_SVGMaskElement_maskContentUnits_Getter(this);
+ AnimatedEnumeration get maskContentUnits => _blink.BlinkSVGMaskElement.$maskContentUnits_Getter(this);
@DomName('SVGMaskElement.maskUnits')
@DocsEditable()
- AnimatedEnumeration get maskUnits => _blink.Native_SVGMaskElement_maskUnits_Getter(this);
+ AnimatedEnumeration get maskUnits => _blink.BlinkSVGMaskElement.$maskUnits_Getter(this);
@DomName('SVGMaskElement.width')
@DocsEditable()
- AnimatedLength get width => _blink.Native_SVGMaskElement_width_Getter(this);
+ AnimatedLength get width => _blink.BlinkSVGMaskElement.$width_Getter(this);
@DomName('SVGMaskElement.x')
@DocsEditable()
- AnimatedLength get x => _blink.Native_SVGMaskElement_x_Getter(this);
+ AnimatedLength get x => _blink.BlinkSVGMaskElement.$x_Getter(this);
@DomName('SVGMaskElement.y')
@DocsEditable()
- AnimatedLength get y => _blink.Native_SVGMaskElement_y_Getter(this);
+ AnimatedLength get y => _blink.BlinkSVGMaskElement.$y_Getter(this);
@DomName('SVGMaskElement.requiredExtensions')
@DocsEditable()
- StringList get requiredExtensions => _blink.Native_SVGMaskElement_requiredExtensions_Getter(this);
+ StringList get requiredExtensions => _blink.BlinkSVGMaskElement.$requiredExtensions_Getter(this);
@DomName('SVGMaskElement.requiredFeatures')
@DocsEditable()
- StringList get requiredFeatures => _blink.Native_SVGMaskElement_requiredFeatures_Getter(this);
+ StringList get requiredFeatures => _blink.BlinkSVGMaskElement.$requiredFeatures_Getter(this);
@DomName('SVGMaskElement.systemLanguage')
@DocsEditable()
- StringList get systemLanguage => _blink.Native_SVGMaskElement_systemLanguage_Getter(this);
+ StringList get systemLanguage => _blink.BlinkSVGMaskElement.$systemLanguage_Getter(this);
@DomName('SVGMaskElement.hasExtension')
@DocsEditable()
- bool hasExtension(String extension) => _blink.Native_SVGMaskElement_hasExtension_Callback(this, extension);
+ bool hasExtension(String extension) => _blink.BlinkSVGMaskElement.$hasExtension_Callback(this, extension);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -3966,95 +3966,95 @@ class Matrix extends NativeFieldWrapperClass2 {
@DomName('SVGMatrix.a')
@DocsEditable()
- num get a => _blink.Native_SVGMatrix_a_Getter(this);
+ num get a => _blink.BlinkSVGMatrix.$a_Getter(this);
@DomName('SVGMatrix.a')
@DocsEditable()
- void set a(num value) => _blink.Native_SVGMatrix_a_Setter(this, value);
+ void set a(num value) => _blink.BlinkSVGMatrix.$a_Setter(this, value);
@DomName('SVGMatrix.b')
@DocsEditable()
- num get b => _blink.Native_SVGMatrix_b_Getter(this);
+ num get b => _blink.BlinkSVGMatrix.$b_Getter(this);
@DomName('SVGMatrix.b')
@DocsEditable()
- void set b(num value) => _blink.Native_SVGMatrix_b_Setter(this, value);
+ void set b(num value) => _blink.BlinkSVGMatrix.$b_Setter(this, value);
@DomName('SVGMatrix.c')
@DocsEditable()
- num get c => _blink.Native_SVGMatrix_c_Getter(this);
+ num get c => _blink.BlinkSVGMatrix.$c_Getter(this);
@DomName('SVGMatrix.c')
@DocsEditable()
- void set c(num value) => _blink.Native_SVGMatrix_c_Setter(this, value);
+ void set c(num value) => _blink.BlinkSVGMatrix.$c_Setter(this, value);
@DomName('SVGMatrix.d')
@DocsEditable()
- num get d => _blink.Native_SVGMatrix_d_Getter(this);
+ num get d => _blink.BlinkSVGMatrix.$d_Getter(this);
@DomName('SVGMatrix.d')
@DocsEditable()
- void set d(num value) => _blink.Native_SVGMatrix_d_Setter(this, value);
+ void set d(num value) => _blink.BlinkSVGMatrix.$d_Setter(this, value);
@DomName('SVGMatrix.e')
@DocsEditable()
- num get e => _blink.Native_SVGMatrix_e_Getter(this);
+ num get e => _blink.BlinkSVGMatrix.$e_Getter(this);
@DomName('SVGMatrix.e')
@DocsEditable()
- void set e(num value) => _blink.Native_SVGMatrix_e_Setter(this, value);
+ void set e(num value) => _blink.BlinkSVGMatrix.$e_Setter(this, value);
@DomName('SVGMatrix.f')
@DocsEditable()
- num get f => _blink.Native_SVGMatrix_f_Getter(this);
+ num get f => _blink.BlinkSVGMatrix.$f_Getter(this);
@DomName('SVGMatrix.f')
@DocsEditable()
- void set f(num value) => _blink.Native_SVGMatrix_f_Setter(this, value);
+ void set f(num value) => _blink.BlinkSVGMatrix.$f_Setter(this, value);
@DomName('SVGMatrix.flipX')
@DocsEditable()
- Matrix flipX() => _blink.Native_SVGMatrix_flipX_Callback(this);
+ Matrix flipX() => _blink.BlinkSVGMatrix.$flipX_Callback(this);
@DomName('SVGMatrix.flipY')
@DocsEditable()
- Matrix flipY() => _blink.Native_SVGMatrix_flipY_Callback(this);
+ Matrix flipY() => _blink.BlinkSVGMatrix.$flipY_Callback(this);
@DomName('SVGMatrix.inverse')
@DocsEditable()
- Matrix inverse() => _blink.Native_SVGMatrix_inverse_Callback(this);
+ Matrix inverse() => _blink.BlinkSVGMatrix.$inverse_Callback(this);
@DomName('SVGMatrix.multiply')
@DocsEditable()
- Matrix multiply(Matrix secondMatrix) => _blink.Native_SVGMatrix_multiply_Callback(this, secondMatrix);
+ Matrix multiply(Matrix secondMatrix) => _blink.BlinkSVGMatrix.$multiply_Callback(this, secondMatrix);
@DomName('SVGMatrix.rotate')
@DocsEditable()
- Matrix rotate(num angle) => _blink.Native_SVGMatrix_rotate_Callback(this, angle);
+ Matrix rotate(num angle) => _blink.BlinkSVGMatrix.$rotate_Callback(this, angle);
@DomName('SVGMatrix.rotateFromVector')
@DocsEditable()
- Matrix rotateFromVector(num x, num y) => _blink.Native_SVGMatrix_rotateFromVector_Callback(this, x, y);
+ Matrix rotateFromVector(num x, num y) => _blink.BlinkSVGMatrix.$rotateFromVector_Callback(this, x, y);
@DomName('SVGMatrix.scale')
@DocsEditable()
- Matrix scale(num scaleFactor) => _blink.Native_SVGMatrix_scale_Callback(this, scaleFactor);
+ Matrix scale(num scaleFactor) => _blink.BlinkSVGMatrix.$scale_Callback(this, scaleFactor);
@DomName('SVGMatrix.scaleNonUniform')
@DocsEditable()
- Matrix scaleNonUniform(num scaleFactorX, num scaleFactorY) => _blink.Native_SVGMatrix_scaleNonUniform_Callback(this, scaleFactorX, scaleFactorY);
+ Matrix scaleNonUniform(num scaleFactorX, num scaleFactorY) => _blink.BlinkSVGMatrix.$scaleNonUniform_Callback(this, scaleFactorX, scaleFactorY);
@DomName('SVGMatrix.skewX')
@DocsEditable()
- Matrix skewX(num angle) => _blink.Native_SVGMatrix_skewX_Callback(this, angle);
+ Matrix skewX(num angle) => _blink.BlinkSVGMatrix.$skewX_Callback(this, angle);
@DomName('SVGMatrix.skewY')
@DocsEditable()
- Matrix skewY(num angle) => _blink.Native_SVGMatrix_skewY_Callback(this, angle);
+ Matrix skewY(num angle) => _blink.BlinkSVGMatrix.$skewY_Callback(this, angle);
@DomName('SVGMatrix.translate')
@DocsEditable()
- Matrix translate(num x, num y) => _blink.Native_SVGMatrix_translate_Callback(this, x, y);
+ Matrix translate(num x, num y) => _blink.BlinkSVGMatrix.$translate_Callback(this, x, y);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -4094,11 +4094,11 @@ class Number extends NativeFieldWrapperClass2 {
@DomName('SVGNumber.value')
@DocsEditable()
- num get value => _blink.Native_SVGNumber_value_Getter(this);
+ num get value => _blink.BlinkSVGNumber.$value_Getter(this);
@DomName('SVGNumber.value')
@DocsEditable()
- void set value(num value) => _blink.Native_SVGNumber_value_Setter(this, value);
+ void set value(num value) => _blink.BlinkSVGNumber.$value_Setter(this, value);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -4117,7 +4117,7 @@ class NumberList extends NativeFieldWrapperClass2 with ListMixin<Number>, Immuta
@DomName('SVGNumberList.numberOfItems')
@DocsEditable()
- int get numberOfItems => _blink.Native_SVGNumberList_numberOfItems_Getter(this);
+ int get numberOfItems => _blink.BlinkSVGNumberList.$numberOfItems_Getter(this);
Number operator[](int index) {
if (index < 0 || index >= length)
@@ -4167,31 +4167,31 @@ class NumberList extends NativeFieldWrapperClass2 with ListMixin<Number>, Immuta
@DomName('SVGNumberList.appendItem')
@DocsEditable()
- Number appendItem(Number item) => _blink.Native_SVGNumberList_appendItem_Callback(this, item);
+ Number appendItem(Number item) => _blink.BlinkSVGNumberList.$appendItem_Callback(this, item);
@DomName('SVGNumberList.clear')
@DocsEditable()
- void clear() => _blink.Native_SVGNumberList_clear_Callback(this);
+ void clear() => _blink.BlinkSVGNumberList.$clear_Callback(this);
@DomName('SVGNumberList.getItem')
@DocsEditable()
- Number getItem(int index) => _blink.Native_SVGNumberList_getItem_Callback(this, index);
+ Number getItem(int index) => _blink.BlinkSVGNumberList.$getItem_Callback(this, index);
@DomName('SVGNumberList.initialize')
@DocsEditable()
- Number initialize(Number item) => _blink.Native_SVGNumberList_initialize_Callback(this, item);
+ Number initialize(Number item) => _blink.BlinkSVGNumberList.$initialize_Callback(this, item);
@DomName('SVGNumberList.insertItemBefore')
@DocsEditable()
- Number insertItemBefore(Number item, int index) => _blink.Native_SVGNumberList_insertItemBefore_Callback(this, item, index);
+ Number insertItemBefore(Number item, int index) => _blink.BlinkSVGNumberList.$insertItemBefore_Callback(this, item, index);
@DomName('SVGNumberList.removeItem')
@DocsEditable()
- Number removeItem(int index) => _blink.Native_SVGNumberList_removeItem_Callback(this, index);
+ Number removeItem(int index) => _blink.BlinkSVGNumberList.$removeItem_Callback(this, index);
@DomName('SVGNumberList.replaceItem')
@DocsEditable()
- Number replaceItem(Number item, int index) => _blink.Native_SVGNumberList_replaceItem_Callback(this, item, index);
+ Number replaceItem(Number item, int index) => _blink.BlinkSVGNumberList.$replaceItem_Callback(this, item, index);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -4220,111 +4220,111 @@ class PathElement extends GeometryElement {
@DomName('SVGPathElement.animatedNormalizedPathSegList')
@DocsEditable()
- PathSegList get animatedNormalizedPathSegList => _blink.Native_SVGPathElement_animatedNormalizedPathSegList_Getter(this);
+ PathSegList get animatedNormalizedPathSegList => _blink.BlinkSVGPathElement.$animatedNormalizedPathSegList_Getter(this);
@DomName('SVGPathElement.animatedPathSegList')
@DocsEditable()
- PathSegList get animatedPathSegList => _blink.Native_SVGPathElement_animatedPathSegList_Getter(this);
+ PathSegList get animatedPathSegList => _blink.BlinkSVGPathElement.$animatedPathSegList_Getter(this);
@DomName('SVGPathElement.normalizedPathSegList')
@DocsEditable()
- PathSegList get normalizedPathSegList => _blink.Native_SVGPathElement_normalizedPathSegList_Getter(this);
+ PathSegList get normalizedPathSegList => _blink.BlinkSVGPathElement.$normalizedPathSegList_Getter(this);
@DomName('SVGPathElement.pathLength')
@DocsEditable()
- AnimatedNumber get pathLength => _blink.Native_SVGPathElement_pathLength_Getter(this);
+ AnimatedNumber get pathLength => _blink.BlinkSVGPathElement.$pathLength_Getter(this);
@DomName('SVGPathElement.pathSegList')
@DocsEditable()
- PathSegList get pathSegList => _blink.Native_SVGPathElement_pathSegList_Getter(this);
+ PathSegList get pathSegList => _blink.BlinkSVGPathElement.$pathSegList_Getter(this);
@DomName('SVGPathElement.createSVGPathSegArcAbs')
@DocsEditable()
- PathSegArcAbs createSvgPathSegArcAbs(num x, num y, num r1, num r2, num angle, bool largeArcFlag, bool sweepFlag) => _blink.Native_SVGPathElement_createSVGPathSegArcAbs_Callback(this, x, y, r1, r2, angle, largeArcFlag, sweepFlag);
+ PathSegArcAbs createSvgPathSegArcAbs(num x, num y, num r1, num r2, num angle, bool largeArcFlag, bool sweepFlag) => _blink.BlinkSVGPathElement.$createSVGPathSegArcAbs_Callback(this, x, y, r1, r2, angle, largeArcFlag, sweepFlag);
@DomName('SVGPathElement.createSVGPathSegArcRel')
@DocsEditable()
- PathSegArcRel createSvgPathSegArcRel(num x, num y, num r1, num r2, num angle, bool largeArcFlag, bool sweepFlag) => _blink.Native_SVGPathElement_createSVGPathSegArcRel_Callback(this, x, y, r1, r2, angle, largeArcFlag, sweepFlag);
+ PathSegArcRel createSvgPathSegArcRel(num x, num y, num r1, num r2, num angle, bool largeArcFlag, bool sweepFlag) => _blink.BlinkSVGPathElement.$createSVGPathSegArcRel_Callback(this, x, y, r1, r2, angle, largeArcFlag, sweepFlag);
@DomName('SVGPathElement.createSVGPathSegClosePath')
@DocsEditable()
- PathSegClosePath createSvgPathSegClosePath() => _blink.Native_SVGPathElement_createSVGPathSegClosePath_Callback(this);
+ PathSegClosePath createSvgPathSegClosePath() => _blink.BlinkSVGPathElement.$createSVGPathSegClosePath_Callback(this);
@DomName('SVGPathElement.createSVGPathSegCurvetoCubicAbs')
@DocsEditable()
- PathSegCurvetoCubicAbs createSvgPathSegCurvetoCubicAbs(num x, num y, num x1, num y1, num x2, num y2) => _blink.Native_SVGPathElement_createSVGPathSegCurvetoCubicAbs_Callback(this, x, y, x1, y1, x2, y2);
+ PathSegCurvetoCubicAbs createSvgPathSegCurvetoCubicAbs(num x, num y, num x1, num y1, num x2, num y2) => _blink.BlinkSVGPathElement.$createSVGPathSegCurvetoCubicAbs_Callback(this, x, y, x1, y1, x2, y2);
@DomName('SVGPathElement.createSVGPathSegCurvetoCubicRel')
@DocsEditable()
- PathSegCurvetoCubicRel createSvgPathSegCurvetoCubicRel(num x, num y, num x1, num y1, num x2, num y2) => _blink.Native_SVGPathElement_createSVGPathSegCurvetoCubicRel_Callback(this, x, y, x1, y1, x2, y2);
+ PathSegCurvetoCubicRel createSvgPathSegCurvetoCubicRel(num x, num y, num x1, num y1, num x2, num y2) => _blink.BlinkSVGPathElement.$createSVGPathSegCurvetoCubicRel_Callback(this, x, y, x1, y1, x2, y2);
@DomName('SVGPathElement.createSVGPathSegCurvetoCubicSmoothAbs')
@DocsEditable()
- PathSegCurvetoCubicSmoothAbs createSvgPathSegCurvetoCubicSmoothAbs(num x, num y, num x2, num y2) => _blink.Native_SVGPathElement_createSVGPathSegCurvetoCubicSmoothAbs_Callback(this, x, y, x2, y2);
+ PathSegCurvetoCubicSmoothAbs createSvgPathSegCurvetoCubicSmoothAbs(num x, num y, num x2, num y2) => _blink.BlinkSVGPathElement.$createSVGPathSegCurvetoCubicSmoothAbs_Callback(this, x, y, x2, y2);
@DomName('SVGPathElement.createSVGPathSegCurvetoCubicSmoothRel')
@DocsEditable()
- PathSegCurvetoCubicSmoothRel createSvgPathSegCurvetoCubicSmoothRel(num x, num y, num x2, num y2) => _blink.Native_SVGPathElement_createSVGPathSegCurvetoCubicSmoothRel_Callback(this, x, y, x2, y2);
+ PathSegCurvetoCubicSmoothRel createSvgPathSegCurvetoCubicSmoothRel(num x, num y, num x2, num y2) => _blink.BlinkSVGPathElement.$createSVGPathSegCurvetoCubicSmoothRel_Callback(this, x, y, x2, y2);
@DomName('SVGPathElement.createSVGPathSegCurvetoQuadraticAbs')
@DocsEditable()
- PathSegCurvetoQuadraticAbs createSvgPathSegCurvetoQuadraticAbs(num x, num y, num x1, num y1) => _blink.Native_SVGPathElement_createSVGPathSegCurvetoQuadraticAbs_Callback(this, x, y, x1, y1);
+ PathSegCurvetoQuadraticAbs createSvgPathSegCurvetoQuadraticAbs(num x, num y, num x1, num y1) => _blink.BlinkSVGPathElement.$createSVGPathSegCurvetoQuadraticAbs_Callback(this, x, y, x1, y1);
@DomName('SVGPathElement.createSVGPathSegCurvetoQuadraticRel')
@DocsEditable()
- PathSegCurvetoQuadraticRel createSvgPathSegCurvetoQuadraticRel(num x, num y, num x1, num y1) => _blink.Native_SVGPathElement_createSVGPathSegCurvetoQuadraticRel_Callback(this, x, y, x1, y1);
+ PathSegCurvetoQuadraticRel createSvgPathSegCurvetoQuadraticRel(num x, num y, num x1, num y1) => _blink.BlinkSVGPathElement.$createSVGPathSegCurvetoQuadraticRel_Callback(this, x, y, x1, y1);
@DomName('SVGPathElement.createSVGPathSegCurvetoQuadraticSmoothAbs')
@DocsEditable()
- PathSegCurvetoQuadraticSmoothAbs createSvgPathSegCurvetoQuadraticSmoothAbs(num x, num y) => _blink.Native_SVGPathElement_createSVGPathSegCurvetoQuadraticSmoothAbs_Callback(this, x, y);
+ PathSegCurvetoQuadraticSmoothAbs createSvgPathSegCurvetoQuadraticSmoothAbs(num x, num y) => _blink.BlinkSVGPathElement.$createSVGPathSegCurvetoQuadraticSmoothAbs_Callback(this, x, y);
@DomName('SVGPathElement.createSVGPathSegCurvetoQuadraticSmoothRel')
@DocsEditable()
- PathSegCurvetoQuadraticSmoothRel createSvgPathSegCurvetoQuadraticSmoothRel(num x, num y) => _blink.Native_SVGPathElement_createSVGPathSegCurvetoQuadraticSmoothRel_Callback(this, x, y);
+ PathSegCurvetoQuadraticSmoothRel createSvgPathSegCurvetoQuadraticSmoothRel(num x, num y) => _blink.BlinkSVGPathElement.$createSVGPathSegCurvetoQuadraticSmoothRel_Callback(this, x, y);
@DomName('SVGPathElement.createSVGPathSegLinetoAbs')
@DocsEditable()
- PathSegLinetoAbs createSvgPathSegLinetoAbs(num x, num y) => _blink.Native_SVGPathElement_createSVGPathSegLinetoAbs_Callback(this, x, y);
+ PathSegLinetoAbs createSvgPathSegLinetoAbs(num x, num y) => _blink.BlinkSVGPathElement.$createSVGPathSegLinetoAbs_Callback(this, x, y);
@DomName('SVGPathElement.createSVGPathSegLinetoHorizontalAbs')
@DocsEditable()
- PathSegLinetoHorizontalAbs createSvgPathSegLinetoHorizontalAbs(num x) => _blink.Native_SVGPathElement_createSVGPathSegLinetoHorizontalAbs_Callback(this, x);
+ PathSegLinetoHorizontalAbs createSvgPathSegLinetoHorizontalAbs(num x) => _blink.BlinkSVGPathElement.$createSVGPathSegLinetoHorizontalAbs_Callback(this, x);
@DomName('SVGPathElement.createSVGPathSegLinetoHorizontalRel')
@DocsEditable()
- PathSegLinetoHorizontalRel createSvgPathSegLinetoHorizontalRel(num x) => _blink.Native_SVGPathElement_createSVGPathSegLinetoHorizontalRel_Callback(this, x);
+ PathSegLinetoHorizontalRel createSvgPathSegLinetoHorizontalRel(num x) => _blink.BlinkSVGPathElement.$createSVGPathSegLinetoHorizontalRel_Callback(this, x);
@DomName('SVGPathElement.createSVGPathSegLinetoRel')
@DocsEditable()
- PathSegLinetoRel createSvgPathSegLinetoRel(num x, num y) => _blink.Native_SVGPathElement_createSVGPathSegLinetoRel_Callback(this, x, y);
+ PathSegLinetoRel createSvgPathSegLinetoRel(num x, num y) => _blink.BlinkSVGPathElement.$createSVGPathSegLinetoRel_Callback(this, x, y);
@DomName('SVGPathElement.createSVGPathSegLinetoVerticalAbs')
@DocsEditable()
- PathSegLinetoVerticalAbs createSvgPathSegLinetoVerticalAbs(num y) => _blink.Native_SVGPathElement_createSVGPathSegLinetoVerticalAbs_Callback(this, y);
+ PathSegLinetoVerticalAbs createSvgPathSegLinetoVerticalAbs(num y) => _blink.BlinkSVGPathElement.$createSVGPathSegLinetoVerticalAbs_Callback(this, y);
@DomName('SVGPathElement.createSVGPathSegLinetoVerticalRel')
@DocsEditable()
- PathSegLinetoVerticalRel createSvgPathSegLinetoVerticalRel(num y) => _blink.Native_SVGPathElement_createSVGPathSegLinetoVerticalRel_Callback(this, y);
+ PathSegLinetoVerticalRel createSvgPathSegLinetoVerticalRel(num y) => _blink.BlinkSVGPathElement.$createSVGPathSegLinetoVerticalRel_Callback(this, y);
@DomName('SVGPathElement.createSVGPathSegMovetoAbs')
@DocsEditable()
- PathSegMovetoAbs createSvgPathSegMovetoAbs(num x, num y) => _blink.Native_SVGPathElement_createSVGPathSegMovetoAbs_Callback(this, x, y);
+ PathSegMovetoAbs createSvgPathSegMovetoAbs(num x, num y) => _blink.BlinkSVGPathElement.$createSVGPathSegMovetoAbs_Callback(this, x, y);
@DomName('SVGPathElement.createSVGPathSegMovetoRel')
@DocsEditable()
- PathSegMovetoRel createSvgPathSegMovetoRel(num x, num y) => _blink.Native_SVGPathElement_createSVGPathSegMovetoRel_Callback(this, x, y);
+ PathSegMovetoRel createSvgPathSegMovetoRel(num x, num y) => _blink.BlinkSVGPathElement.$createSVGPathSegMovetoRel_Callback(this, x, y);
@DomName('SVGPathElement.getPathSegAtLength')
@DocsEditable()
- int getPathSegAtLength(num distance) => _blink.Native_SVGPathElement_getPathSegAtLength_Callback(this, distance);
+ int getPathSegAtLength(num distance) => _blink.BlinkSVGPathElement.$getPathSegAtLength_Callback(this, distance);
@DomName('SVGPathElement.getPointAtLength')
@DocsEditable()
- Point getPointAtLength(num distance) => _blink.Native_SVGPathElement_getPointAtLength_Callback(this, distance);
+ Point getPointAtLength(num distance) => _blink.BlinkSVGPathElement.$getPointAtLength_Callback(this, distance);
@DomName('SVGPathElement.getTotalLength')
@DocsEditable()
- double getTotalLength() => _blink.Native_SVGPathElement_getTotalLength_Callback(this);
+ double getTotalLength() => _blink.BlinkSVGPathElement.$getTotalLength_Callback(this);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -4423,11 +4423,11 @@ class PathSeg extends NativeFieldWrapperClass2 {
@DomName('SVGPathSeg.pathSegType')
@DocsEditable()
- int get pathSegType => _blink.Native_SVGPathSeg_pathSegType_Getter(this);
+ int get pathSegType => _blink.BlinkSVGPathSeg.$pathSegType_Getter(this);
@DomName('SVGPathSeg.pathSegTypeAsLetter')
@DocsEditable()
- String get pathSegTypeAsLetter => _blink.Native_SVGPathSeg_pathSegTypeAsLetter_Getter(this);
+ String get pathSegTypeAsLetter => _blink.BlinkSVGPathSeg.$pathSegTypeAsLetter_Getter(this);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -4446,59 +4446,59 @@ class PathSegArcAbs extends PathSeg {
@DomName('SVGPathSegArcAbs.angle')
@DocsEditable()
- num get angle => _blink.Native_SVGPathSegArcAbs_angle_Getter(this);
+ num get angle => _blink.BlinkSVGPathSegArcAbs.$angle_Getter(this);
@DomName('SVGPathSegArcAbs.angle')
@DocsEditable()
- void set angle(num value) => _blink.Native_SVGPathSegArcAbs_angle_Setter(this, value);
+ void set angle(num value) => _blink.BlinkSVGPathSegArcAbs.$angle_Setter(this, value);
@DomName('SVGPathSegArcAbs.largeArcFlag')
@DocsEditable()
- bool get largeArcFlag => _blink.Native_SVGPathSegArcAbs_largeArcFlag_Getter(this);
+ bool get largeArcFlag => _blink.BlinkSVGPathSegArcAbs.$largeArcFlag_Getter(this);
@DomName('SVGPathSegArcAbs.largeArcFlag')
@DocsEditable()
- void set largeArcFlag(bool value) => _blink.Native_SVGPathSegArcAbs_largeArcFlag_Setter(this, value);
+ void set largeArcFlag(bool value) => _blink.BlinkSVGPathSegArcAbs.$largeArcFlag_Setter(this, value);
@DomName('SVGPathSegArcAbs.r1')
@DocsEditable()
- num get r1 => _blink.Native_SVGPathSegArcAbs_r1_Getter(this);
+ num get r1 => _blink.BlinkSVGPathSegArcAbs.$r1_Getter(this);
@DomName('SVGPathSegArcAbs.r1')
@DocsEditable()
- void set r1(num value) => _blink.Native_SVGPathSegArcAbs_r1_Setter(this, value);
+ void set r1(num value) => _blink.BlinkSVGPathSegArcAbs.$r1_Setter(this, value);
@DomName('SVGPathSegArcAbs.r2')
@DocsEditable()
- num get r2 => _blink.Native_SVGPathSegArcAbs_r2_Getter(this);
+ num get r2 => _blink.BlinkSVGPathSegArcAbs.$r2_Getter(this);
@DomName('SVGPathSegArcAbs.r2')
@DocsEditable()
- void set r2(num value) => _blink.Native_SVGPathSegArcAbs_r2_Setter(this, value);
+ void set r2(num value) => _blink.BlinkSVGPathSegArcAbs.$r2_Setter(this, value);
@DomName('SVGPathSegArcAbs.sweepFlag')
@DocsEditable()
- bool get sweepFlag => _blink.Native_SVGPathSegArcAbs_sweepFlag_Getter(this);
+ bool get sweepFlag => _blink.BlinkSVGPathSegArcAbs.$sweepFlag_Getter(this);
@DomName('SVGPathSegArcAbs.sweepFlag')
@DocsEditable()
- void set sweepFlag(bool value) => _blink.Native_SVGPathSegArcAbs_sweepFlag_Setter(this, value);
+ void set sweepFlag(bool value) => _blink.BlinkSVGPathSegArcAbs.$sweepFlag_Setter(this, value);
@DomName('SVGPathSegArcAbs.x')
@DocsEditable()
- num get x => _blink.Native_SVGPathSegArcAbs_x_Getter(this);
+ num get x => _blink.BlinkSVGPathSegArcAbs.$x_Getter(this);
@DomName('SVGPathSegArcAbs.x')
@DocsEditable()
- void set x(num value) => _blink.Native_SVGPathSegArcAbs_x_Setter(this, value);
+ void set x(num value) => _blink.BlinkSVGPathSegArcAbs.$x_Setter(this, value);
@DomName('SVGPathSegArcAbs.y')
@DocsEditable()
- num get y => _blink.Native_SVGPathSegArcAbs_y_Getter(this);
+ num get y => _blink.BlinkSVGPathSegArcAbs.$y_Getter(this);
@DomName('SVGPathSegArcAbs.y')
@DocsEditable()
- void set y(num value) => _blink.Native_SVGPathSegArcAbs_y_Setter(this, value);
+ void set y(num value) => _blink.BlinkSVGPathSegArcAbs.$y_Setter(this, value);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -4517,59 +4517,59 @@ class PathSegArcRel extends PathSeg {
@DomName('SVGPathSegArcRel.angle')
@DocsEditable()
- num get angle => _blink.Native_SVGPathSegArcRel_angle_Getter(this);
+ num get angle => _blink.BlinkSVGPathSegArcRel.$angle_Getter(this);
@DomName('SVGPathSegArcRel.angle')
@DocsEditable()
- void set angle(num value) => _blink.Native_SVGPathSegArcRel_angle_Setter(this, value);
+ void set angle(num value) => _blink.BlinkSVGPathSegArcRel.$angle_Setter(this, value);
@DomName('SVGPathSegArcRel.largeArcFlag')
@DocsEditable()
- bool get largeArcFlag => _blink.Native_SVGPathSegArcRel_largeArcFlag_Getter(this);
+ bool get largeArcFlag => _blink.BlinkSVGPathSegArcRel.$largeArcFlag_Getter(this);
@DomName('SVGPathSegArcRel.largeArcFlag')
@DocsEditable()
- void set largeArcFlag(bool value) => _blink.Native_SVGPathSegArcRel_largeArcFlag_Setter(this, value);
+ void set largeArcFlag(bool value) => _blink.BlinkSVGPathSegArcRel.$largeArcFlag_Setter(this, value);
@DomName('SVGPathSegArcRel.r1')
@DocsEditable()
- num get r1 => _blink.Native_SVGPathSegArcRel_r1_Getter(this);
+ num get r1 => _blink.BlinkSVGPathSegArcRel.$r1_Getter(this);
@DomName('SVGPathSegArcRel.r1')
@DocsEditable()
- void set r1(num value) => _blink.Native_SVGPathSegArcRel_r1_Setter(this, value);
+ void set r1(num value) => _blink.BlinkSVGPathSegArcRel.$r1_Setter(this, value);
@DomName('SVGPathSegArcRel.r2')
@DocsEditable()
- num get r2 => _blink.Native_SVGPathSegArcRel_r2_Getter(this);
+ num get r2 => _blink.BlinkSVGPathSegArcRel.$r2_Getter(this);
@DomName('SVGPathSegArcRel.r2')
@DocsEditable()
- void set r2(num value) => _blink.Native_SVGPathSegArcRel_r2_Setter(this, value);
+ void set r2(num value) => _blink.BlinkSVGPathSegArcRel.$r2_Setter(this, value);
@DomName('SVGPathSegArcRel.sweepFlag')
@DocsEditable()
- bool get sweepFlag => _blink.Native_SVGPathSegArcRel_sweepFlag_Getter(this);
+ bool get sweepFlag => _blink.BlinkSVGPathSegArcRel.$sweepFlag_Getter(this);
@DomName('SVGPathSegArcRel.sweepFlag')
@DocsEditable()
- void set sweepFlag(bool value) => _blink.Native_SVGPathSegArcRel_sweepFlag_Setter(this, value);
+ void set sweepFlag(bool value) => _blink.BlinkSVGPathSegArcRel.$sweepFlag_Setter(this, value);
@DomName('SVGPathSegArcRel.x')
@DocsEditable()
- num get x => _blink.Native_SVGPathSegArcRel_x_Getter(this);
+ num get x => _blink.BlinkSVGPathSegArcRel.$x_Getter(this);
@DomName('SVGPathSegArcRel.x')
@DocsEditable()
- void set x(num value) => _blink.Native_SVGPathSegArcRel_x_Setter(this, value);
+ void set x(num value) => _blink.BlinkSVGPathSegArcRel.$x_Setter(this, value);
@DomName('SVGPathSegArcRel.y')
@DocsEditable()
- num get y => _blink.Native_SVGPathSegArcRel_y_Getter(this);
+ num get y => _blink.BlinkSVGPathSegArcRel.$y_Getter(this);
@DomName('SVGPathSegArcRel.y')
@DocsEditable()
- void set y(num value) => _blink.Native_SVGPathSegArcRel_y_Setter(this, value);
+ void set y(num value) => _blink.BlinkSVGPathSegArcRel.$y_Setter(this, value);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -4603,51 +4603,51 @@ class PathSegCurvetoCubicAbs extends PathSeg {
@DomName('SVGPathSegCurvetoCubicAbs.x')
@DocsEditable()
- num get x => _blink.Native_SVGPathSegCurvetoCubicAbs_x_Getter(this);
+ num get x => _blink.BlinkSVGPathSegCurvetoCubicAbs.$x_Getter(this);
@DomName('SVGPathSegCurvetoCubicAbs.x')
@DocsEditable()
- void set x(num value) => _blink.Native_SVGPathSegCurvetoCubicAbs_x_Setter(this, value);
+ void set x(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.$x_Setter(this, value);
@DomName('SVGPathSegCurvetoCubicAbs.x1')
@DocsEditable()
- num get x1 => _blink.Native_SVGPathSegCurvetoCubicAbs_x1_Getter(this);
+ num get x1 => _blink.BlinkSVGPathSegCurvetoCubicAbs.$x1_Getter(this);
@DomName('SVGPathSegCurvetoCubicAbs.x1')
@DocsEditable()
- void set x1(num value) => _blink.Native_SVGPathSegCurvetoCubicAbs_x1_Setter(this, value);
+ void set x1(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.$x1_Setter(this, value);
@DomName('SVGPathSegCurvetoCubicAbs.x2')
@DocsEditable()
- num get x2 => _blink.Native_SVGPathSegCurvetoCubicAbs_x2_Getter(this);
+ num get x2 => _blink.BlinkSVGPathSegCurvetoCubicAbs.$x2_Getter(this);
@DomName('SVGPathSegCurvetoCubicAbs.x2')
@DocsEditable()
- void set x2(num value) => _blink.Native_SVGPathSegCurvetoCubicAbs_x2_Setter(this, value);
+ void set x2(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.$x2_Setter(this, value);
@DomName('SVGPathSegCurvetoCubicAbs.y')
@DocsEditable()
- num get y => _blink.Native_SVGPathSegCurvetoCubicAbs_y_Getter(this);
+ num get y => _blink.BlinkSVGPathSegCurvetoCubicAbs.$y_Getter(this);
@DomName('SVGPathSegCurvetoCubicAbs.y')
@DocsEditable()
- void set y(num value) => _blink.Native_SVGPathSegCurvetoCubicAbs_y_Setter(this, value);
+ void set y(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.$y_Setter(this, value);
@DomName('SVGPathSegCurvetoCubicAbs.y1')
@DocsEditable()
- num get y1 => _blink.Native_SVGPathSegCurvetoCubicAbs_y1_Getter(this);
+ num get y1 => _blink.BlinkSVGPathSegCurvetoCubicAbs.$y1_Getter(this);
@DomName('SVGPathSegCurvetoCubicAbs.y1')
@DocsEditable()
- void set y1(num value) => _blink.Native_SVGPathSegCurvetoCubicAbs_y1_Setter(this, value);
+ void set y1(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.$y1_Setter(this, value);
@DomName('SVGPathSegCurvetoCubicAbs.y2')
@DocsEditable()
- num get y2 => _blink.Native_SVGPathSegCurvetoCubicAbs_y2_Getter(this);
+ num get y2 => _blink.BlinkSVGPathSegCurvetoCubicAbs.$y2_Getter(this);
@DomName('SVGPathSegCurvetoCubicAbs.y2')
@DocsEditable()
- void set y2(num value) => _blink.Native_SVGPathSegCurvetoCubicAbs_y2_Setter(this, value);
+ void set y2(num value) => _blink.BlinkSVGPathSegCurvetoCubicAbs.$y2_Setter(this, value);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -4666,51 +4666,51 @@ class PathSegCurvetoCubicRel extends PathSeg {
@DomName('SVGPathSegCurvetoCubicRel.x')
@DocsEditable()
- num get x => _blink.Native_SVGPathSegCurvetoCubicRel_x_Getter(this);
+ num get x => _blink.BlinkSVGPathSegCurvetoCubicRel.$x_Getter(this);
@DomName('SVGPathSegCurvetoCubicRel.x')
@DocsEditable()
- void set x(num value) => _blink.Native_SVGPathSegCurvetoCubicRel_x_Setter(this, value);
+ void set x(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.$x_Setter(this, value);
@DomName('SVGPathSegCurvetoCubicRel.x1')
@DocsEditable()
- num get x1 => _blink.Native_SVGPathSegCurvetoCubicRel_x1_Getter(this);
+ num get x1 => _blink.BlinkSVGPathSegCurvetoCubicRel.$x1_Getter(this);
@DomName('SVGPathSegCurvetoCubicRel.x1')
@DocsEditable()
- void set x1(num value) => _blink.Native_SVGPathSegCurvetoCubicRel_x1_Setter(this, value);
+ void set x1(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.$x1_Setter(this, value);
@DomName('SVGPathSegCurvetoCubicRel.x2')
@DocsEditable()
- num get x2 => _blink.Native_SVGPathSegCurvetoCubicRel_x2_Getter(this);
+ num get x2 => _blink.BlinkSVGPathSegCurvetoCubicRel.$x2_Getter(this);
@DomName('SVGPathSegCurvetoCubicRel.x2')
@DocsEditable()
- void set x2(num value) => _blink.Native_SVGPathSegCurvetoCubicRel_x2_Setter(this, value);
+ void set x2(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.$x2_Setter(this, value);
@DomName('SVGPathSegCurvetoCubicRel.y')
@DocsEditable()
- num get y => _blink.Native_SVGPathSegCurvetoCubicRel_y_Getter(this);
+ num get y => _blink.BlinkSVGPathSegCurvetoCubicRel.$y_Getter(this);
@DomName('SVGPathSegCurvetoCubicRel.y')
@DocsEditable()
- void set y(num value) => _blink.Native_SVGPathSegCurvetoCubicRel_y_Setter(this, value);
+ void set y(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.$y_Setter(this, value);
@DomName('SVGPathSegCurvetoCubicRel.y1')
@DocsEditable()
- num get y1 => _blink.Native_SVGPathSegCurvetoCubicRel_y1_Getter(this);
+ num get y1 => _blink.BlinkSVGPathSegCurvetoCubicRel.$y1_Getter(this);
@DomName('SVGPathSegCurvetoCubicRel.y1')
@DocsEditable()
- void set y1(num value) => _blink.Native_SVGPathSegCurvetoCubicRel_y1_Setter(this, value);
+ void set y1(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.$y1_Setter(this, value);
@DomName('SVGPathSegCurvetoCubicRel.y2')
@DocsEditable()
- num get y2 => _blink.Native_SVGPathSegCurvetoCubicRel_y2_Getter(this);
+ num get y2 => _blink.BlinkSVGPathSegCurvetoCubicRel.$y2_Getter(this);
@DomName('SVGPathSegCurvetoCubicRel.y2')
@DocsEditable()
- void set y2(num value) => _blink.Native_SVGPathSegCurvetoCubicRel_y2_Setter(this, value);
+ void set y2(num value) => _blink.BlinkSVGPathSegCurvetoCubicRel.$y2_Setter(this, value);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -4729,35 +4729,35 @@ class PathSegCurvetoCubicSmoothAbs extends PathSeg {
@DomName('SVGPathSegCurvetoCubicSmoothAbs.x')
@DocsEditable()
- num get x => _blink.Native_SVGPathSegCurvetoCubicSmoothAbs_x_Getter(this);
+ num get x => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.$x_Getter(this);
@DomName('SVGPathSegCurvetoCubicSmoothAbs.x')
@DocsEditable()
- void set x(num value) => _blink.Native_SVGPathSegCurvetoCubicSmoothAbs_x_Setter(this, value);
+ void set x(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.$x_Setter(this, value);
@DomName('SVGPathSegCurvetoCubicSmoothAbs.x2')
@DocsEditable()
- num get x2 => _blink.Native_SVGPathSegCurvetoCubicSmoothAbs_x2_Getter(this);
+ num get x2 => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.$x2_Getter(this);
@DomName('SVGPathSegCurvetoCubicSmoothAbs.x2')
@DocsEditable()
- void set x2(num value) => _blink.Native_SVGPathSegCurvetoCubicSmoothAbs_x2_Setter(this, value);
+ void set x2(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.$x2_Setter(this, value);
@DomName('SVGPathSegCurvetoCubicSmoothAbs.y')
@DocsEditable()
- num get y => _blink.Native_SVGPathSegCurvetoCubicSmoothAbs_y_Getter(this);
+ num get y => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.$y_Getter(this);
@DomName('SVGPathSegCurvetoCubicSmoothAbs.y')
@DocsEditable()
- void set y(num value) => _blink.Native_SVGPathSegCurvetoCubicSmoothAbs_y_Setter(this, value);
+ void set y(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.$y_Setter(this, value);
@DomName('SVGPathSegCurvetoCubicSmoothAbs.y2')
@DocsEditable()
- num get y2 => _blink.Native_SVGPathSegCurvetoCubicSmoothAbs_y2_Getter(this);
+ num get y2 => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.$y2_Getter(this);
@DomName('SVGPathSegCurvetoCubicSmoothAbs.y2')
@DocsEditable()
- void set y2(num value) => _blink.Native_SVGPathSegCurvetoCubicSmoothAbs_y2_Setter(this, value);
+ void set y2(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothAbs.$y2_Setter(this, value);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -4776,35 +4776,35 @@ class PathSegCurvetoCubicSmoothRel extends PathSeg {
@DomName('SVGPathSegCurvetoCubicSmoothRel.x')
@DocsEditable()
- num get x => _blink.Native_SVGPathSegCurvetoCubicSmoothRel_x_Getter(this);
+ num get x => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.$x_Getter(this);
@DomName('SVGPathSegCurvetoCubicSmoothRel.x')
@DocsEditable()
- void set x(num value) => _blink.Native_SVGPathSegCurvetoCubicSmoothRel_x_Setter(this, value);
+ void set x(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.$x_Setter(this, value);
@DomName('SVGPathSegCurvetoCubicSmoothRel.x2')
@DocsEditable()
- num get x2 => _blink.Native_SVGPathSegCurvetoCubicSmoothRel_x2_Getter(this);
+ num get x2 => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.$x2_Getter(this);
@DomName('SVGPathSegCurvetoCubicSmoothRel.x2')
@DocsEditable()
- void set x2(num value) => _blink.Native_SVGPathSegCurvetoCubicSmoothRel_x2_Setter(this, value);
+ void set x2(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.$x2_Setter(this, value);
@DomName('SVGPathSegCurvetoCubicSmoothRel.y')
@DocsEditable()
- num get y => _blink.Native_SVGPathSegCurvetoCubicSmoothRel_y_Getter(this);
+ num get y => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.$y_Getter(this);
@DomName('SVGPathSegCurvetoCubicSmoothRel.y')
@DocsEditable()
- void set y(num value) => _blink.Native_SVGPathSegCurvetoCubicSmoothRel_y_Setter(this, value);
+ void set y(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.$y_Setter(this, value);
@DomName('SVGPathSegCurvetoCubicSmoothRel.y2')
@DocsEditable()
- num get y2 => _blink.Native_SVGPathSegCurvetoCubicSmoothRel_y2_Getter(this);
+ num get y2 => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.$y2_Getter(this);
@DomName('SVGPathSegCurvetoCubicSmoothRel.y2')
@DocsEditable()
- void set y2(num value) => _blink.Native_SVGPathSegCurvetoCubicSmoothRel_y2_Setter(this, value);
+ void set y2(num value) => _blink.BlinkSVGPathSegCurvetoCubicSmoothRel.$y2_Setter(this, value);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -4823,35 +4823,35 @@ class PathSegCurvetoQuadraticAbs extends PathSeg {
@DomName('SVGPathSegCurvetoQuadraticAbs.x')
@DocsEditable()
- num get x => _blink.Native_SVGPathSegCurvetoQuadraticAbs_x_Getter(this);
+ num get x => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.$x_Getter(this);
@DomName('SVGPathSegCurvetoQuadraticAbs.x')
@DocsEditable()
- void set x(num value) => _blink.Native_SVGPathSegCurvetoQuadraticAbs_x_Setter(this, value);
+ void set x(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.$x_Setter(this, value);
@DomName('SVGPathSegCurvetoQuadraticAbs.x1')
@DocsEditable()
- num get x1 => _blink.Native_SVGPathSegCurvetoQuadraticAbs_x1_Getter(this);
+ num get x1 => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.$x1_Getter(this);
@DomName('SVGPathSegCurvetoQuadraticAbs.x1')
@DocsEditable()
- void set x1(num value) => _blink.Native_SVGPathSegCurvetoQuadraticAbs_x1_Setter(this, value);
+ void set x1(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.$x1_Setter(this, value);
@DomName('SVGPathSegCurvetoQuadraticAbs.y')
@DocsEditable()
- num get y => _blink.Native_SVGPathSegCurvetoQuadraticAbs_y_Getter(this);
+ num get y => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.$y_Getter(this);
@DomName('SVGPathSegCurvetoQuadraticAbs.y')
@DocsEditable()
- void set y(num value) => _blink.Native_SVGPathSegCurvetoQuadraticAbs_y_Setter(this, value);
+ void set y(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.$y_Setter(this, value);
@DomName('SVGPathSegCurvetoQuadraticAbs.y1')
@DocsEditable()
- num get y1 => _blink.Native_SVGPathSegCurvetoQuadraticAbs_y1_Getter(this);
+ num get y1 => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.$y1_Getter(this);
@DomName('SVGPathSegCurvetoQuadraticAbs.y1')
@DocsEditable()
- void set y1(num value) => _blink.Native_SVGPathSegCurvetoQuadraticAbs_y1_Setter(this, value);
+ void set y1(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticAbs.$y1_Setter(this, value);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -4870,35 +4870,35 @@ class PathSegCurvetoQuadraticRel extends PathSeg {
@DomName('SVGPathSegCurvetoQuadraticRel.x')
@DocsEditable()
- num get x => _blink.Native_SVGPathSegCurvetoQuadraticRel_x_Getter(this);
+ num get x => _blink.BlinkSVGPathSegCurvetoQuadraticRel.$x_Getter(this);
@DomName('SVGPathSegCurvetoQuadraticRel.x')
@DocsEditable()
- void set x(num value) => _blink.Native_SVGPathSegCurvetoQuadraticRel_x_Setter(this, value);
+ void set x(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticRel.$x_Setter(this, value);
@DomName('SVGPathSegCurvetoQuadraticRel.x1')
@DocsEditable()
- num get x1 => _blink.Native_SVGPathSegCurvetoQuadraticRel_x1_Getter(this);
+ num get x1 => _blink.BlinkSVGPathSegCurvetoQuadraticRel.$x1_Getter(this);
@DomName('SVGPathSegCurvetoQuadraticRel.x1')
@DocsEditable()
- void set x1(num value) => _blink.Native_SVGPathSegCurvetoQuadraticRel_x1_Setter(this, value);
+ void set x1(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticRel.$x1_Setter(this, value);
@DomName('SVGPathSegCurvetoQuadraticRel.y')
@DocsEditable()
- num get y => _blink.Native_SVGPathSegCurvetoQuadraticRel_y_Getter(this);
+ num get y => _blink.BlinkSVGPathSegCurvetoQuadraticRel.$y_Getter(this);
@DomName('SVGPathSegCurvetoQuadraticRel.y')
@DocsEditable()
- void set y(num value) => _blink.Native_SVGPathSegCurvetoQuadraticRel_y_Setter(this, value);
+ void set y(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticRel.$y_Setter(this, value);
@DomName('SVGPathSegCurvetoQuadraticRel.y1')
@DocsEditable()
- num get y1 => _blink.Native_SVGPathSegCurvetoQuadraticRel_y1_Getter(this);
+ num get y1 => _blink.BlinkSVGPathSegCurvetoQuadraticRel.$y1_Getter(this);
@DomName('SVGPathSegCurvetoQuadraticRel.y1')
@DocsEditable()
- void set y1(num value) => _blink.Native_SVGPathSegCurvetoQuadraticRel_y1_Setter(this, value);
+ void set y1(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticRel.$y1_Setter(this, value);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -4917,19 +4917,19 @@ class PathSegCurvetoQuadraticSmoothAbs extends PathSeg {
@DomName('SVGPathSegCurvetoQuadraticSmoothAbs.x')
@DocsEditable()
- num get x => _blink.Native_SVGPathSegCurvetoQuadraticSmoothAbs_x_Getter(this);
+ num get x => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothAbs.$x_Getter(this);
@DomName('SVGPathSegCurvetoQuadraticSmoothAbs.x')
@DocsEditable()
- void set x(num value) => _blink.Native_SVGPathSegCurvetoQuadraticSmoothAbs_x_Setter(this, value);
+ void set x(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothAbs.$x_Setter(this, value);
@DomName('SVGPathSegCurvetoQuadraticSmoothAbs.y')
@DocsEditable()
- num get y => _blink.Native_SVGPathSegCurvetoQuadraticSmoothAbs_y_Getter(this);
+ num get y => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothAbs.$y_Getter(this);
@DomName('SVGPathSegCurvetoQuadraticSmoothAbs.y')
@DocsEditable()
- void set y(num value) => _blink.Native_SVGPathSegCurvetoQuadraticSmoothAbs_y_Setter(this, value);
+ void set y(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothAbs.$y_Setter(this, value);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -4948,19 +4948,19 @@ class PathSegCurvetoQuadraticSmoothRel extends PathSeg {
@DomName('SVGPathSegCurvetoQuadraticSmoothRel.x')
@DocsEditable()
- num get x => _blink.Native_SVGPathSegCurvetoQuadraticSmoothRel_x_Getter(this);
+ num get x => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothRel.$x_Getter(this);
@DomName('SVGPathSegCurvetoQuadraticSmoothRel.x')
@DocsEditable()
- void set x(num value) => _blink.Native_SVGPathSegCurvetoQuadraticSmoothRel_x_Setter(this, value);
+ void set x(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothRel.$x_Setter(this, value);
@DomName('SVGPathSegCurvetoQuadraticSmoothRel.y')
@DocsEditable()
- num get y => _blink.Native_SVGPathSegCurvetoQuadraticSmoothRel_y_Getter(this);
+ num get y => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothRel.$y_Getter(this);
@DomName('SVGPathSegCurvetoQuadraticSmoothRel.y')
@DocsEditable()
- void set y(num value) => _blink.Native_SVGPathSegCurvetoQuadraticSmoothRel_y_Setter(this, value);
+ void set y(num value) => _blink.BlinkSVGPathSegCurvetoQuadraticSmoothRel.$y_Setter(this, value);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -4979,19 +4979,19 @@ class PathSegLinetoAbs extends PathSeg {
@DomName('SVGPathSegLinetoAbs.x')
@DocsEditable()
- num get x => _blink.Native_SVGPathSegLinetoAbs_x_Getter(this);
+ num get x => _blink.BlinkSVGPathSegLinetoAbs.$x_Getter(this);
@DomName('SVGPathSegLinetoAbs.x')
@DocsEditable()
- void set x(num value) => _blink.Native_SVGPathSegLinetoAbs_x_Setter(this, value);
+ void set x(num value) => _blink.BlinkSVGPathSegLinetoAbs.$x_Setter(this, value);
@DomName('SVGPathSegLinetoAbs.y')
@DocsEditable()
- num get y => _blink.Native_SVGPathSegLinetoAbs_y_Getter(this);
+ num get y => _blink.BlinkSVGPathSegLinetoAbs.$y_Getter(this);
@DomName('SVGPathSegLinetoAbs.y')
@DocsEditable()
- void set y(num value) => _blink.Native_SVGPathSegLinetoAbs_y_Setter(this, value);
+ void set y(num value) => _blink.BlinkSVGPathSegLinetoAbs.$y_Setter(this, value);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -5010,11 +5010,11 @@ class PathSegLinetoHorizontalAbs extends PathSeg {
@DomName('SVGPathSegLinetoHorizontalAbs.x')
@DocsEditable()
- num get x => _blink.Native_SVGPathSegLinetoHorizontalAbs_x_Getter(this);
+ num get x => _blink.BlinkSVGPathSegLinetoHorizontalAbs.$x_Getter(this);
@DomName('SVGPathSegLinetoHorizontalAbs.x')
@DocsEditable()
- void set x(num value) => _blink.Native_SVGPathSegLinetoHorizontalAbs_x_Setter(this, value);
+ void set x(num value) => _blink.BlinkSVGPathSegLinetoHorizontalAbs.$x_Setter(this, value);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -5033,11 +5033,11 @@ class PathSegLinetoHorizontalRel extends PathSeg {
@DomName('SVGPathSegLinetoHorizontalRel.x')
@DocsEditable()
- num get x => _blink.Native_SVGPathSegLinetoHorizontalRel_x_Getter(this);
+ num get x => _blink.BlinkSVGPathSegLinetoHorizontalRel.$x_Getter(this);
@DomName('SVGPathSegLinetoHorizontalRel.x')
@DocsEditable()
- void set x(num value) => _blink.Native_SVGPathSegLinetoHorizontalRel_x_Setter(this, value);
+ void set x(num value) => _blink.BlinkSVGPathSegLinetoHorizontalRel.$x_Setter(this, value);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -5056,19 +5056,19 @@ class PathSegLinetoRel extends PathSeg {
@DomName('SVGPathSegLinetoRel.x')
@DocsEditable()
- num get x => _blink.Native_SVGPathSegLinetoRel_x_Getter(this);
+ num get x => _blink.BlinkSVGPathSegLinetoRel.$x_Getter(this);
@DomName('SVGPathSegLinetoRel.x')
@DocsEditable()
- void set x(num value) => _blink.Native_SVGPathSegLinetoRel_x_Setter(this, value);
+ void set x(num value) => _blink.BlinkSVGPathSegLinetoRel.$x_Setter(this, value);
@DomName('SVGPathSegLinetoRel.y')
@DocsEditable()
- num get y => _blink.Native_SVGPathSegLinetoRel_y_Getter(this);
+ num get y => _blink.BlinkSVGPathSegLinetoRel.$y_Getter(this);
@DomName('SVGPathSegLinetoRel.y')
@DocsEditable()
- void set y(num value) => _blink.Native_SVGPathSegLinetoRel_y_Setter(this, value);
+ void set y(num value) => _blink.BlinkSVGPathSegLinetoRel.$y_Setter(this, value);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -5087,11 +5087,11 @@ class PathSegLinetoVerticalAbs extends PathSeg {
@DomName('SVGPathSegLinetoVerticalAbs.y')
@DocsEditable()
- num get y => _blink.Native_SVGPathSegLinetoVerticalAbs_y_Getter(this);
+ num get y => _blink.BlinkSVGPathSegLinetoVerticalAbs.$y_Getter(this);
@DomName('SVGPathSegLinetoVerticalAbs.y')
@DocsEditable()
- void set y(num value) => _blink.Native_SVGPathSegLinetoVerticalAbs_y_Setter(this, value);
+ void set y(num value) => _blink.BlinkSVGPathSegLinetoVerticalAbs.$y_Setter(this, value);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -5110,11 +5110,11 @@ class PathSegLinetoVerticalRel extends PathSeg {
@DomName('SVGPathSegLinetoVerticalRel.y')
@DocsEditable()
- num get y => _blink.Native_SVGPathSegLinetoVerticalRel_y_Getter(this);
+ num get y => _blink.BlinkSVGPathSegLinetoVerticalRel.$y_Getter(this);
@DomName('SVGPathSegLinetoVerticalRel.y')
@DocsEditable()
- void set y(num value) => _blink.Native_SVGPathSegLinetoVerticalRel_y_Setter(this, value);
+ void set y(num value) => _blink.BlinkSVGPathSegLinetoVerticalRel.$y_Setter(this, value);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -5133,7 +5133,7 @@ class PathSegList extends NativeFieldWrapperClass2 with ListMixin<PathSeg>, Immu
@DomName('SVGPathSegList.numberOfItems')
@DocsEditable()
- int get numberOfItems => _blink.Native_SVGPathSegList_numberOfItems_Getter(this);
+ int get numberOfItems => _blink.BlinkSVGPathSegList.$numberOfItems_Getter(this);
PathSeg operator[](int index) {
if (index < 0 || index >= length)
@@ -5183,31 +5183,31 @@ class PathSegList extends NativeFieldWrapperClass2 with ListMixin<PathSeg>, Immu
@DomName('SVGPathSegList.appendItem')
@DocsEditable()
- PathSeg appendItem(PathSeg newItem) => _blink.Native_SVGPathSegList_appendItem_Callback(this, newItem);
+ PathSeg appendItem(PathSeg newItem) => _blink.BlinkSVGPathSegList.$appendItem_Callback(this, newItem);
@DomName('SVGPathSegList.clear')
@DocsEditable()
- void clear() => _blink.Native_SVGPathSegList_clear_Callback(this);
+ void clear() => _blink.BlinkSVGPathSegList.$clear_Callback(this);
@DomName('SVGPathSegList.getItem')
@DocsEditable()
- PathSeg getItem(int index) => _blink.Native_SVGPathSegList_getItem_Callback(this, index);
+ PathSeg getItem(int index) => _blink.BlinkSVGPathSegList.$getItem_Callback(this, index);
@DomName('SVGPathSegList.initialize')
@DocsEditable()
- PathSeg initialize(PathSeg newItem) => _blink.Native_SVGPathSegList_initialize_Callback(this, newItem);
+ PathSeg initialize(PathSeg newItem) => _blink.BlinkSVGPathSegList.$initialize_Callback(this, newItem);
@DomName('SVGPathSegList.insertItemBefore')
@DocsEditable()
- PathSeg insertItemBefore(PathSeg newItem, int index) => _blink.Native_SVGPathSegList_insertItemBefore_Callback(this, newItem, index);
+ PathSeg insertItemBefore(PathSeg newItem, int index) => _blink.BlinkSVGPathSegList.$insertItemBefore_Callback(this, newItem, index);
@DomName('SVGPathSegList.removeItem')
@DocsEditable()
- PathSeg removeItem(int index) => _blink.Native_SVGPathSegList_removeItem_Callback(this, index);
+ PathSeg removeItem(int index) => _blink.BlinkSVGPathSegList.$removeItem_Callback(this, index);
@DomName('SVGPathSegList.replaceItem')
@DocsEditable()
- PathSeg replaceItem(PathSeg newItem, int index) => _blink.Native_SVGPathSegList_replaceItem_Callback(this, newItem, index);
+ PathSeg replaceItem(PathSeg newItem, int index) => _blink.BlinkSVGPathSegList.$replaceItem_Callback(this, newItem, index);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -5226,19 +5226,19 @@ class PathSegMovetoAbs extends PathSeg {
@DomName('SVGPathSegMovetoAbs.x')
@DocsEditable()
- num get x => _blink.Native_SVGPathSegMovetoAbs_x_Getter(this);
+ num get x => _blink.BlinkSVGPathSegMovetoAbs.$x_Getter(this);
@DomName('SVGPathSegMovetoAbs.x')
@DocsEditable()
- void set x(num value) => _blink.Native_SVGPathSegMovetoAbs_x_Setter(this, value);
+ void set x(num value) => _blink.BlinkSVGPathSegMovetoAbs.$x_Setter(this, value);
@DomName('SVGPathSegMovetoAbs.y')
@DocsEditable()
- num get y => _blink.Native_SVGPathSegMovetoAbs_y_Getter(this);
+ num get y => _blink.BlinkSVGPathSegMovetoAbs.$y_Getter(this);
@DomName('SVGPathSegMovetoAbs.y')
@DocsEditable()
- void set y(num value) => _blink.Native_SVGPathSegMovetoAbs_y_Setter(this, value);
+ void set y(num value) => _blink.BlinkSVGPathSegMovetoAbs.$y_Setter(this, value);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -5257,19 +5257,19 @@ class PathSegMovetoRel extends PathSeg {
@DomName('SVGPathSegMovetoRel.x')
@DocsEditable()
- num get x => _blink.Native_SVGPathSegMovetoRel_x_Getter(this);
+ num get x => _blink.BlinkSVGPathSegMovetoRel.$x_Getter(this);
@DomName('SVGPathSegMovetoRel.x')
@DocsEditable()
- void set x(num value) => _blink.Native_SVGPathSegMovetoRel_x_Setter(this, value);
+ void set x(num value) => _blink.BlinkSVGPathSegMovetoRel.$x_Setter(this, value);
@DomName('SVGPathSegMovetoRel.y')
@DocsEditable()
- num get y => _blink.Native_SVGPathSegMovetoRel_y_Getter(this);
+ num get y => _blink.BlinkSVGPathSegMovetoRel.$y_Getter(this);
@DomName('SVGPathSegMovetoRel.y')
@DocsEditable()
- void set y(num value) => _blink.Native_SVGPathSegMovetoRel_y_Setter(this, value);
+ void set y(num value) => _blink.BlinkSVGPathSegMovetoRel.$y_Setter(this, value);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -5298,59 +5298,59 @@ class PatternElement extends SvgElement implements FitToViewBox, UriReference, T
@DomName('SVGPatternElement.height')
@DocsEditable()
- AnimatedLength get height => _blink.Native_SVGPatternElement_height_Getter(this);
+ AnimatedLength get height => _blink.BlinkSVGPatternElement.$height_Getter(this);
@DomName('SVGPatternElement.patternContentUnits')
@DocsEditable()
- AnimatedEnumeration get patternContentUnits => _blink.Native_SVGPatternElement_patternContentUnits_Getter(this);
+ AnimatedEnumeration get patternContentUnits => _blink.BlinkSVGPatternElement.$patternContentUnits_Getter(this);
@DomName('SVGPatternElement.patternTransform')
@DocsEditable()
- AnimatedTransformList get patternTransform => _blink.Native_SVGPatternElement_patternTransform_Getter(this);
+ AnimatedTransformList get patternTransform => _blink.BlinkSVGPatternElement.$patternTransform_Getter(this);
@DomName('SVGPatternElement.patternUnits')
@DocsEditable()
- AnimatedEnumeration get patternUnits => _blink.Native_SVGPatternElement_patternUnits_Getter(this);
+ AnimatedEnumeration get patternUnits => _blink.BlinkSVGPatternElement.$patternUnits_Getter(this);
@DomName('SVGPatternElement.width')
@DocsEditable()
- AnimatedLength get width => _blink.Native_SVGPatternElement_width_Getter(this);
+ AnimatedLength get width => _blink.BlinkSVGPatternElement.$width_Getter(this);
@DomName('SVGPatternElement.x')
@DocsEditable()
- AnimatedLength get x => _blink.Native_SVGPatternElement_x_Getter(this);
+ AnimatedLength get x => _blink.BlinkSVGPatternElement.$x_Getter(this);
@DomName('SVGPatternElement.y')
@DocsEditable()
- AnimatedLength get y => _blink.Native_SVGPatternElement_y_Getter(this);
+ AnimatedLength get y => _blink.BlinkSVGPatternElement.$y_Getter(this);
@DomName('SVGPatternElement.preserveAspectRatio')
@DocsEditable()
- AnimatedPreserveAspectRatio get preserveAspectRatio => _blink.Native_SVGPatternElement_preserveAspectRatio_Getter(this);
+ AnimatedPreserveAspectRatio get preserveAspectRatio => _blink.BlinkSVGPatternElement.$preserveAspectRatio_Getter(this);
@DomName('SVGPatternElement.viewBox')
@DocsEditable()
- AnimatedRect get viewBox => _blink.Native_SVGPatternElement_viewBox_Getter(this);
+ AnimatedRect get viewBox => _blink.BlinkSVGPatternElement.$viewBox_Getter(this);
@DomName('SVGPatternElement.requiredExtensions')
@DocsEditable()
- StringList get requiredExtensions => _blink.Native_SVGPatternElement_requiredExtensions_Getter(this);
+ StringList get requiredExtensions => _blink.BlinkSVGPatternElement.$requiredExtensions_Getter(this);
@DomName('SVGPatternElement.requiredFeatures')
@DocsEditable()
- StringList get requiredFeatures => _blink.Native_SVGPatternElement_requiredFeatures_Getter(this);
+ StringList get requiredFeatures => _blink.BlinkSVGPatternElement.$requiredFeatures_Getter(this);
@DomName('SVGPatternElement.systemLanguage')
@DocsEditable()
- StringList get systemLanguage => _blink.Native_SVGPatternElement_systemLanguage_Getter(this);
+ StringList get systemLanguage => _blink.BlinkSVGPatternElement.$systemLanguage_Getter(this);
@DomName('SVGPatternElement.hasExtension')
@DocsEditable()
- bool hasExtension(String extension) => _blink.Native_SVGPatternElement_hasExtension_Callback(this, extension);
+ bool hasExtension(String extension) => _blink.BlinkSVGPatternElement.$hasExtension_Callback(this, extension);
@DomName('SVGPatternElement.href')
@DocsEditable()
- AnimatedString get href => _blink.Native_SVGPatternElement_href_Getter(this);
+ AnimatedString get href => _blink.BlinkSVGPatternElement.$href_Getter(this);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -5369,23 +5369,23 @@ class Point extends NativeFieldWrapperClass2 {
@DomName('SVGPoint.x')
@DocsEditable()
- num get x => _blink.Native_SVGPoint_x_Getter(this);
+ num get x => _blink.BlinkSVGPoint.$x_Getter(this);
@DomName('SVGPoint.x')
@DocsEditable()
- void set x(num value) => _blink.Native_SVGPoint_x_Setter(this, value);
+ void set x(num value) => _blink.BlinkSVGPoint.$x_Setter(this, value);
@DomName('SVGPoint.y')
@DocsEditable()
- num get y => _blink.Native_SVGPoint_y_Getter(this);
+ num get y => _blink.BlinkSVGPoint.$y_Getter(this);
@DomName('SVGPoint.y')
@DocsEditable()
- void set y(num value) => _blink.Native_SVGPoint_y_Setter(this, value);
+ void set y(num value) => _blink.BlinkSVGPoint.$y_Setter(this, value);
@DomName('SVGPoint.matrixTransform')
@DocsEditable()
- Point matrixTransform(Matrix matrix) => _blink.Native_SVGPoint_matrixTransform_Callback(this, matrix);
+ Point matrixTransform(Matrix matrix) => _blink.BlinkSVGPoint.$matrixTransform_Callback(this, matrix);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -5404,35 +5404,35 @@ class PointList extends NativeFieldWrapperClass2 {
@DomName('SVGPointList.numberOfItems')
@DocsEditable()
- int get numberOfItems => _blink.Native_SVGPointList_numberOfItems_Getter(this);
+ int get numberOfItems => _blink.BlinkSVGPointList.$numberOfItems_Getter(this);
@DomName('SVGPointList.appendItem')
@DocsEditable()
- Point appendItem(Point item) => _blink.Native_SVGPointList_appendItem_Callback(this, item);
+ Point appendItem(Point item) => _blink.BlinkSVGPointList.$appendItem_Callback(this, item);
@DomName('SVGPointList.clear')
@DocsEditable()
- void clear() => _blink.Native_SVGPointList_clear_Callback(this);
+ void clear() => _blink.BlinkSVGPointList.$clear_Callback(this);
@DomName('SVGPointList.getItem')
@DocsEditable()
- Point getItem(int index) => _blink.Native_SVGPointList_getItem_Callback(this, index);
+ Point getItem(int index) => _blink.BlinkSVGPointList.$getItem_Callback(this, index);
@DomName('SVGPointList.initialize')
@DocsEditable()
- Point initialize(Point item) => _blink.Native_SVGPointList_initialize_Callback(this, item);
+ Point initialize(Point item) => _blink.BlinkSVGPointList.$initialize_Callback(this, item);
@DomName('SVGPointList.insertItemBefore')
@DocsEditable()
- Point insertItemBefore(Point item, int index) => _blink.Native_SVGPointList_insertItemBefore_Callback(this, item, index);
+ Point insertItemBefore(Point item, int index) => _blink.BlinkSVGPointList.$insertItemBefore_Callback(this, item, index);
@DomName('SVGPointList.removeItem')
@DocsEditable()
- Point removeItem(int index) => _blink.Native_SVGPointList_removeItem_Callback(this, index);
+ Point removeItem(int index) => _blink.BlinkSVGPointList.$removeItem_Callback(this, index);
@DomName('SVGPointList.replaceItem')
@DocsEditable()
- Point replaceItem(Point item, int index) => _blink.Native_SVGPointList_replaceItem_Callback(this, item, index);
+ Point replaceItem(Point item, int index) => _blink.BlinkSVGPointList.$replaceItem_Callback(this, item, index);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -5461,11 +5461,11 @@ class PolygonElement extends GeometryElement {
@DomName('SVGPolygonElement.animatedPoints')
@DocsEditable()
- PointList get animatedPoints => _blink.Native_SVGPolygonElement_animatedPoints_Getter(this);
+ PointList get animatedPoints => _blink.BlinkSVGPolygonElement.$animatedPoints_Getter(this);
@DomName('SVGPolygonElement.points')
@DocsEditable()
- PointList get points => _blink.Native_SVGPolygonElement_points_Getter(this);
+ PointList get points => _blink.BlinkSVGPolygonElement.$points_Getter(this);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -5494,11 +5494,11 @@ class PolylineElement extends GeometryElement {
@DomName('SVGPolylineElement.animatedPoints')
@DocsEditable()
- PointList get animatedPoints => _blink.Native_SVGPolylineElement_animatedPoints_Getter(this);
+ PointList get animatedPoints => _blink.BlinkSVGPolylineElement.$animatedPoints_Getter(this);
@DomName('SVGPolylineElement.points')
@DocsEditable()
- PointList get points => _blink.Native_SVGPolylineElement_points_Getter(this);
+ PointList get points => _blink.BlinkSVGPolylineElement.$points_Getter(this);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -5573,19 +5573,19 @@ class PreserveAspectRatio extends NativeFieldWrapperClass2 {
@DomName('SVGPreserveAspectRatio.align')
@DocsEditable()
- int get align => _blink.Native_SVGPreserveAspectRatio_align_Getter(this);
+ int get align => _blink.BlinkSVGPreserveAspectRatio.$align_Getter(this);
@DomName('SVGPreserveAspectRatio.align')
@DocsEditable()
- void set align(int value) => _blink.Native_SVGPreserveAspectRatio_align_Setter(this, value);
+ void set align(int value) => _blink.BlinkSVGPreserveAspectRatio.$align_Setter(this, value);
@DomName('SVGPreserveAspectRatio.meetOrSlice')
@DocsEditable()
- int get meetOrSlice => _blink.Native_SVGPreserveAspectRatio_meetOrSlice_Getter(this);
+ int get meetOrSlice => _blink.BlinkSVGPreserveAspectRatio.$meetOrSlice_Getter(this);
@DomName('SVGPreserveAspectRatio.meetOrSlice')
@DocsEditable()
- void set meetOrSlice(int value) => _blink.Native_SVGPreserveAspectRatio_meetOrSlice_Setter(this, value);
+ void set meetOrSlice(int value) => _blink.BlinkSVGPreserveAspectRatio.$meetOrSlice_Setter(this, value);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -5614,27 +5614,27 @@ class RadialGradientElement extends _GradientElement {
@DomName('SVGRadialGradientElement.cx')
@DocsEditable()
- AnimatedLength get cx => _blink.Native_SVGRadialGradientElement_cx_Getter(this);
+ AnimatedLength get cx => _blink.BlinkSVGRadialGradientElement.$cx_Getter(this);
@DomName('SVGRadialGradientElement.cy')
@DocsEditable()
- AnimatedLength get cy => _blink.Native_SVGRadialGradientElement_cy_Getter(this);
+ AnimatedLength get cy => _blink.BlinkSVGRadialGradientElement.$cy_Getter(this);
@DomName('SVGRadialGradientElement.fr')
@DocsEditable()
- AnimatedLength get fr => _blink.Native_SVGRadialGradientElement_fr_Getter(this);
+ AnimatedLength get fr => _blink.BlinkSVGRadialGradientElement.$fr_Getter(this);
@DomName('SVGRadialGradientElement.fx')
@DocsEditable()
- AnimatedLength get fx => _blink.Native_SVGRadialGradientElement_fx_Getter(this);
+ AnimatedLength get fx => _blink.BlinkSVGRadialGradientElement.$fx_Getter(this);
@DomName('SVGRadialGradientElement.fy')
@DocsEditable()
- AnimatedLength get fy => _blink.Native_SVGRadialGradientElement_fy_Getter(this);
+ AnimatedLength get fy => _blink.BlinkSVGRadialGradientElement.$fy_Getter(this);
@DomName('SVGRadialGradientElement.r')
@DocsEditable()
- AnimatedLength get r => _blink.Native_SVGRadialGradientElement_r_Getter(this);
+ AnimatedLength get r => _blink.BlinkSVGRadialGradientElement.$r_Getter(this);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -5653,35 +5653,35 @@ class Rect extends NativeFieldWrapperClass2 {
@DomName('SVGRect.height')
@DocsEditable()
- num get height => _blink.Native_SVGRect_height_Getter(this);
+ num get height => _blink.BlinkSVGRect.$height_Getter(this);
@DomName('SVGRect.height')
@DocsEditable()
- void set height(num value) => _blink.Native_SVGRect_height_Setter(this, value);
+ void set height(num value) => _blink.BlinkSVGRect.$height_Setter(this, value);
@DomName('SVGRect.width')
@DocsEditable()
- num get width => _blink.Native_SVGRect_width_Getter(this);
+ num get width => _blink.BlinkSVGRect.$width_Getter(this);
@DomName('SVGRect.width')
@DocsEditable()
- void set width(num value) => _blink.Native_SVGRect_width_Setter(this, value);
+ void set width(num value) => _blink.BlinkSVGRect.$width_Setter(this, value);
@DomName('SVGRect.x')
@DocsEditable()
- num get x => _blink.Native_SVGRect_x_Getter(this);
+ num get x => _blink.BlinkSVGRect.$x_Getter(this);
@DomName('SVGRect.x')
@DocsEditable()
- void set x(num value) => _blink.Native_SVGRect_x_Setter(this, value);
+ void set x(num value) => _blink.BlinkSVGRect.$x_Setter(this, value);
@DomName('SVGRect.y')
@DocsEditable()
- num get y => _blink.Native_SVGRect_y_Getter(this);
+ num get y => _blink.BlinkSVGRect.$y_Getter(this);
@DomName('SVGRect.y')
@DocsEditable()
- void set y(num value) => _blink.Native_SVGRect_y_Setter(this, value);
+ void set y(num value) => _blink.BlinkSVGRect.$y_Setter(this, value);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -5710,27 +5710,27 @@ class RectElement extends GeometryElement {
@DomName('SVGRectElement.height')
@DocsEditable()
- AnimatedLength get height => _blink.Native_SVGRectElement_height_Getter(this);
+ AnimatedLength get height => _blink.BlinkSVGRectElement.$height_Getter(this);
@DomName('SVGRectElement.rx')
@DocsEditable()
- AnimatedLength get rx => _blink.Native_SVGRectElement_rx_Getter(this);
+ AnimatedLength get rx => _blink.BlinkSVGRectElement.$rx_Getter(this);
@DomName('SVGRectElement.ry')
@DocsEditable()
- AnimatedLength get ry => _blink.Native_SVGRectElement_ry_Getter(this);
+ AnimatedLength get ry => _blink.BlinkSVGRectElement.$ry_Getter(this);
@DomName('SVGRectElement.width')
@DocsEditable()
- AnimatedLength get width => _blink.Native_SVGRectElement_width_Getter(this);
+ AnimatedLength get width => _blink.BlinkSVGRectElement.$width_Getter(this);
@DomName('SVGRectElement.x')
@DocsEditable()
- AnimatedLength get x => _blink.Native_SVGRectElement_x_Getter(this);
+ AnimatedLength get x => _blink.BlinkSVGRectElement.$x_Getter(this);
@DomName('SVGRectElement.y')
@DocsEditable()
- AnimatedLength get y => _blink.Native_SVGRectElement_y_Getter(this);
+ AnimatedLength get y => _blink.BlinkSVGRectElement.$y_Getter(this);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -5798,15 +5798,15 @@ class ScriptElement extends SvgElement implements UriReference {
@DomName('SVGScriptElement.type')
@DocsEditable()
- String get type => _blink.Native_SVGScriptElement_type_Getter(this);
+ String get type => _blink.BlinkSVGScriptElement.$type_Getter(this);
@DomName('SVGScriptElement.type')
@DocsEditable()
- void set type(String value) => _blink.Native_SVGScriptElement_type_Setter(this, value);
+ void set type(String value) => _blink.BlinkSVGScriptElement.$type_Setter(this, value);
@DomName('SVGScriptElement.href')
@DocsEditable()
- AnimatedString get href => _blink.Native_SVGScriptElement_href_Getter(this);
+ AnimatedString get href => _blink.BlinkSVGScriptElement.$href_Getter(this);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -5866,7 +5866,7 @@ class StopElement extends SvgElement {
@DomName('SVGStopElement.offset')
@DocsEditable()
- AnimatedNumber get gradientOffset => _blink.Native_SVGStopElement_offset_Getter(this);
+ AnimatedNumber get gradientOffset => _blink.BlinkSVGStopElement.$offset_Getter(this);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -5885,7 +5885,7 @@ class StringList extends NativeFieldWrapperClass2 with ListMixin<String>, Immuta
@DomName('SVGStringList.numberOfItems')
@DocsEditable()
- int get numberOfItems => _blink.Native_SVGStringList_numberOfItems_Getter(this);
+ int get numberOfItems => _blink.BlinkSVGStringList.$numberOfItems_Getter(this);
String operator[](int index) {
if (index < 0 || index >= length)
@@ -5935,31 +5935,31 @@ class StringList extends NativeFieldWrapperClass2 with ListMixin<String>, Immuta
@DomName('SVGStringList.appendItem')
@DocsEditable()
- String appendItem(String item) => _blink.Native_SVGStringList_appendItem_Callback(this, item);
+ String appendItem(String item) => _blink.BlinkSVGStringList.$appendItem_Callback(this, item);
@DomName('SVGStringList.clear')
@DocsEditable()
- void clear() => _blink.Native_SVGStringList_clear_Callback(this);
+ void clear() => _blink.BlinkSVGStringList.$clear_Callback(this);
@DomName('SVGStringList.getItem')
@DocsEditable()
- String getItem(int index) => _blink.Native_SVGStringList_getItem_Callback(this, index);
+ String getItem(int index) => _blink.BlinkSVGStringList.$getItem_Callback(this, index);
@DomName('SVGStringList.initialize')
@DocsEditable()
- String initialize(String item) => _blink.Native_SVGStringList_initialize_Callback(this, item);
+ String initialize(String item) => _blink.BlinkSVGStringList.$initialize_Callback(this, item);
@DomName('SVGStringList.insertItemBefore')
@DocsEditable()
- String insertItemBefore(String item, int index) => _blink.Native_SVGStringList_insertItemBefore_Callback(this, item, index);
+ String insertItemBefore(String item, int index) => _blink.BlinkSVGStringList.$insertItemBefore_Callback(this, item, index);
@DomName('SVGStringList.removeItem')
@DocsEditable()
- String removeItem(int index) => _blink.Native_SVGStringList_removeItem_Callback(this, index);
+ String removeItem(int index) => _blink.BlinkSVGStringList.$removeItem_Callback(this, index);
@DomName('SVGStringList.replaceItem')
@DocsEditable()
- String replaceItem(String item, int index) => _blink.Native_SVGStringList_replaceItem_Callback(this, item, index);
+ String replaceItem(String item, int index) => _blink.BlinkSVGStringList.$replaceItem_Callback(this, item, index);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -5989,35 +5989,35 @@ class StyleElement extends SvgElement {
@DomName('SVGStyleElement.disabled')
@DocsEditable()
- bool get disabled => _blink.Native_SVGStyleElement_disabled_Getter(this);
+ bool get disabled => _blink.BlinkSVGStyleElement.$disabled_Getter(this);
@DomName('SVGStyleElement.disabled')
@DocsEditable()
- void set disabled(bool value) => _blink.Native_SVGStyleElement_disabled_Setter(this, value);
+ void set disabled(bool value) => _blink.BlinkSVGStyleElement.$disabled_Setter(this, value);
@DomName('SVGStyleElement.media')
@DocsEditable()
- String get media => _blink.Native_SVGStyleElement_media_Getter(this);
+ String get media => _blink.BlinkSVGStyleElement.$media_Getter(this);
@DomName('SVGStyleElement.media')
@DocsEditable()
- void set media(String value) => _blink.Native_SVGStyleElement_media_Setter(this, value);
+ void set media(String value) => _blink.BlinkSVGStyleElement.$media_Setter(this, value);
@DomName('SVGStyleElement.title')
@DocsEditable()
- String get title => _blink.Native_SVGStyleElement_title_Getter(this);
+ String get title => _blink.BlinkSVGStyleElement.$title_Getter(this);
@DomName('SVGStyleElement.title')
@DocsEditable()
- void set title(String value) => _blink.Native_SVGStyleElement_title_Setter(this, value);
+ void set title(String value) => _blink.BlinkSVGStyleElement.$title_Setter(this, value);
@DomName('SVGStyleElement.type')
@DocsEditable()
- String get type => _blink.Native_SVGStyleElement_type_Getter(this);
+ String get type => _blink.BlinkSVGStyleElement.$type_Getter(this);
@DomName('SVGStyleElement.type')
@DocsEditable()
- void set type(String value) => _blink.Native_SVGStyleElement_type_Setter(this, value);
+ void set type(String value) => _blink.BlinkSVGStyleElement.$type_Setter(this, value);
}
// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
@@ -6443,48 +6443,48 @@ class SvgElement extends Element implements GlobalEventHandlers {
@DomName('SVGElement.className')
@DocsEditable()
@Experimental() // untriaged
- AnimatedString get _svgClassName => _blink.Native_SVGElement_className_Getter(this);
+ AnimatedString get _svgClassName => _blink.BlinkSVGElement.$className_Getter(this);
@DomName('SVGElement.ownerSVGElement')
@DocsEditable()
- SvgSvgElement get ownerSvgElement => _blink.Native_SVGElement_ownerSVGElement_Getter(this);
+ SvgSvgElement get ownerSvgElement => _blink.BlinkSVGElement.$ownerSVGElement_Getter(this);
@DomName('SVGElement.style')
@DocsEditable()
@Experimental() // untriaged
- CssStyleDeclaration get style => _blink.Native_SVGElement_style_Getter(this);
+ CssStyleDeclaration get style => _blink.BlinkSVGElement.$style_Getter(this);
@DomName('SVGElement.viewportElement')
@DocsEditable()
- SvgElement get viewportElement => _blink.Native_SVGElement_viewportElement_Getter(this);
+ SvgElement get viewportElement => _blink.BlinkSVGElement.$viewportElement_Getter(this);
@DomName('SVGElement.xmlbase')
@DocsEditable()
- String get xmlbase => _blink.Native_SVGElement_xmlbase_Getter(this);
+ String get xmlbase => _blink.BlinkSVGElement.$xmlbase_Getter(this);
@DomName('SVGElement.xmlbase')
@DocsEditable()
- void set xmlbase(String value) => _blink.Native_SVGElement_xmlbase_Setter(this, value);
+ void set xmlbase(String value) => _blink.BlinkSVGElement.$xmlbase_Setter(this, value);
@DomName('SVGElement.xmllang')
@DocsEditable()
@Experimental() // untriaged
- String get xmllang => _blink.Native_SVGElement_xmllang_Getter(this);
+ String get xmllang => _blink.BlinkSVGElement.$xmllang_Getter(this);
@DomName('SVGElement.xmllang')
@DocsEditable()
@Experimental() // untriaged
- void set xmllang(String value) => _blink.Native_SVGElement_xmllang_Setter(this, value);
+ void set xmllang(String value) => _blink.BlinkSVGElement.$xmllang_Setter(this, value);
@DomName('SVGElement.xmlspace')
@DocsEditable()
@Experimental() // untriaged
- String get xmlspace => _blink.Native_SVGElement_xmlspace_Getter(this);
+ String get xmlspace => _blink.BlinkSVGElement.$xmlspace_Getter(this);
@DomName('SVGElement.xmlspace')
@DocsEditable()
@Experimental() // untriaged
- void set xmlspace(String value) => _blink.Native_SVGElement_xmlspace_Setter(this, value);
+ void set xmlspace(String value) => _blink.BlinkSVGElement.$xmlspace_Setter(this, value);
@DomName('SVGElement.onabort')
@DocsEditable()
@@ -6773,167 +6773,167 @@ class SvgSvgElement extends GraphicsElement implements FitToViewBox, ZoomAndPan
@DomName('SVGSVGElement.currentScale')
@DocsEditable()
- num get currentScale => _blink.Native_SVGSVGElement_currentScale_Getter(this);
+ num get currentScale => _blink.BlinkSVGSVGElement.$currentScale_Getter(this);
@DomName('SVGSVGElement.currentScale')
@DocsEditable()
- void set currentScale(num value) => _blink.Native_SVGSVGElement_currentScale_Setter(this, value);
+ void set currentScale(num value) => _blink.BlinkSVGSVGElement.$currentScale_Setter(this, value);
@DomName('SVGSVGElement.currentTranslate')
@DocsEditable()
- Point get currentTranslate => _blink.Native_SVGSVGElement_currentTranslate_Getter(this);
+ Point get currentTranslate => _blink.BlinkSVGSVGElement.$currentTranslate_Getter(this);
@DomName('SVGSVGElement.currentView')
@DocsEditable()
- ViewSpec get currentView => _blink.Native_SVGSVGElement_currentView_Getter(this);
+ ViewSpec get currentView => _blink.BlinkSVGSVGElement.$currentView_Getter(this);
@DomName('SVGSVGElement.height')
@DocsEditable()
- AnimatedLength get height => _blink.Native_SVGSVGElement_height_Getter(this);
+ AnimatedLength get height => _blink.BlinkSVGSVGElement.$height_Getter(this);
@DomName('SVGSVGElement.pixelUnitToMillimeterX')
@DocsEditable()
- double get pixelUnitToMillimeterX => _blink.Native_SVGSVGElement_pixelUnitToMillimeterX_Getter(this);
+ double get pixelUnitToMillimeterX => _blink.BlinkSVGSVGElement.$pixelUnitToMillimeterX_Getter(this);
@DomName('SVGSVGElement.pixelUnitToMillimeterY')
@DocsEditable()
- double get pixelUnitToMillimeterY => _blink.Native_SVGSVGElement_pixelUnitToMillimeterY_Getter(this);
+ double get pixelUnitToMillimeterY => _blink.BlinkSVGSVGElement.$pixelUnitToMillimeterY_Getter(this);
@DomName('SVGSVGElement.screenPixelToMillimeterX')
@DocsEditable()
- double get screenPixelToMillimeterX => _blink.Native_SVGSVGElement_screenPixelToMillimeterX_Getter(this);
+ double get screenPixelToMillimeterX => _blink.BlinkSVGSVGElement.$screenPixelToMillimeterX_Getter(this);
@DomName('SVGSVGElement.screenPixelToMillimeterY')
@DocsEditable()
- double get screenPixelToMillimeterY => _blink.Native_SVGSVGElement_screenPixelToMillimeterY_Getter(this);
+ double get screenPixelToMillimeterY => _blink.BlinkSVGSVGElement.$screenPixelToMillimeterY_Getter(this);
@DomName('SVGSVGElement.useCurrentView')
@DocsEditable()
- bool get useCurrentView => _blink.Native_SVGSVGElement_useCurrentView_Getter(this);
+ bool get useCurrentView => _blink.BlinkSVGSVGElement.$useCurrentView_Getter(this);
@DomName('SVGSVGElement.viewport')
@DocsEditable()
- Rect get viewport => _blink.Native_SVGSVGElement_viewport_Getter(this);
+ Rect get viewport => _blink.BlinkSVGSVGElement.$viewport_Getter(this);
@DomName('SVGSVGElement.width')
@DocsEditable()
- AnimatedLength get width => _blink.Native_SVGSVGElement_width_Getter(this);
+ AnimatedLength get width => _blink.BlinkSVGSVGElement.$width_Getter(this);
@DomName('SVGSVGElement.x')
@DocsEditable()
- AnimatedLength get x => _blink.Native_SVGSVGElement_x_Getter(this);
+ AnimatedLength get x => _blink.BlinkSVGSVGElement.$x_Getter(this);
@DomName('SVGSVGElement.y')
@DocsEditable()
- AnimatedLength get y => _blink.Native_SVGSVGElement_y_Getter(this);
+ AnimatedLength get y => _blink.BlinkSVGSVGElement.$y_Getter(this);
@DomName('SVGSVGElement.animationsPaused')
@DocsEditable()
- bool animationsPaused() => _blink.Native_SVGSVGElement_animationsPaused_Callback(this);
+ bool animationsPaused() => _blink.BlinkSVGSVGElement.$animationsPaused_Callback(this);
@DomName('SVGSVGElement.checkEnclosure')
@DocsEditable()
- bool checkEnclosure(SvgElement element, Rect rect) => _blink.Native_SVGSVGElement_checkEnclosure_Callback(this, element, rect);
+ bool checkEnclosure(SvgElement element, Rect rect) => _blink.BlinkSVGSVGElement.$checkEnclosure_Callback(this, element, rect);
@DomName('SVGSVGElement.checkIntersection')
@DocsEditable()
- bool checkIntersection(SvgElement element, Rect rect) => _blink.Native_SVGSVGElement_checkIntersection_Callback(this, element, rect);
+ bool checkIntersection(SvgElement element, Rect rect) => _blink.BlinkSVGSVGElement.$checkIntersection_Callback(this, element, rect);
@DomName('SVGSVGElement.createSVGAngle')
@DocsEditable()
- Angle createSvgAngle() => _blink.Native_SVGSVGElement_createSVGAngle_Callback(this);
+ Angle createSvgAngle() => _blink.BlinkSVGSVGElement.$createSVGAngle_Callback(this);
@DomName('SVGSVGElement.createSVGLength')
@DocsEditable()
- Length createSvgLength() => _blink.Native_SVGSVGElement_createSVGLength_Callback(this);
+ Length createSvgLength() => _blink.BlinkSVGSVGElement.$createSVGLength_Callback(this);
@DomName('SVGSVGElement.createSVGMatrix')
@DocsEditable()
- Matrix createSvgMatrix() => _blink.Native_SVGSVGElement_createSVGMatrix_Callback(this);
+ Matrix createSvgMatrix() => _blink.BlinkSVGSVGElement.$createSVGMatrix_Callback(this);
@DomName('SVGSVGElement.createSVGNumber')
@DocsEditable()
- Number createSvgNumber() => _blink.Native_SVGSVGElement_createSVGNumber_Callback(this);
+ Number createSvgNumber() => _blink.BlinkSVGSVGElement.$createSVGNumber_Callback(this);
@DomName('SVGSVGElement.createSVGPoint')
@DocsEditable()
- Point createSvgPoint() => _blink.Native_SVGSVGElement_createSVGPoint_Callback(this);
+ Point createSvgPoint() => _blink.BlinkSVGSVGElement.$createSVGPoint_Callback(this);
@DomName('SVGSVGElement.createSVGRect')
@DocsEditable()
- Rect createSvgRect() => _blink.Native_SVGSVGElement_createSVGRect_Callback(this);
+ Rect createSvgRect() => _blink.BlinkSVGSVGElement.$createSVGRect_Callback(this);
@DomName('SVGSVGElement.createSVGTransform')
@DocsEditable()
- Transform createSvgTransform() => _blink.Native_SVGSVGElement_createSVGTransform_Callback(this);
+ Transform createSvgTransform() => _blink.BlinkSVGSVGElement.$createSVGTransform_Callback(this);
@DomName('SVGSVGElement.createSVGTransformFromMatrix')
@DocsEditable()
- Transform createSvgTransformFromMatrix(Matrix matrix) => _blink.Native_SVGSVGElement_createSVGTransformFromMatrix_Callback(this, matrix);
+ Transform createSvgTransformFromMatrix(Matrix matrix) => _blink.BlinkSVGSVGElement.$createSVGTransformFromMatrix_Callback(this, matrix);
@DomName('SVGSVGElement.deselectAll')
@DocsEditable()
- void deselectAll() => _blink.Native_SVGSVGElement_deselectAll_Callback(this);
+ void deselectAll() => _blink.BlinkSVGSVGElement.$deselectAll_Callback(this);
@DomName('SVGSVGElement.forceRedraw')
@DocsEditable()
- void forceRedraw() => _blink.Native_SVGSVGElement_forceRedraw_Callback(this);
+ void forceRedraw() => _blink.BlinkSVGSVGElement.$forceRedraw_Callback(this);
@DomName('SVGSVGElement.getCurrentTime')
@DocsEditable()
- double getCurrentTime() => _blink.Native_SVGSVGElement_getCurrentTime_Callback(this);
+ double getCurrentTime() => _blink.BlinkSVGSVGElement.$getCurrentTime_Callback(this);
@DomName('SVGSVGElement.getElementById')
@DocsEditable()
- Element getElementById(String elementId) => _blink.Native_SVGSVGElement_getElementById_Callback(this, elementId);
+ Element getElementById(String elementId) => _blink.BlinkSVGSVGElement.$getElementById_Callback(this, elementId);
@DomName('SVGSVGElement.getEnclosureList')
@DocsEditable()
- List<Node> getEnclosureList(Rect rect, SvgElement referenceElement) => _blink.Native_SVGSVGElement_getEnclosureList_Callback(this, rect, referenceElement);
+ List<Node> getEnclosureList(Rect rect, SvgElement referenceElement) => _blink.BlinkSVGSVGElement.$getEnclosureList_Callback(this, rect, referenceElement);
@DomName('SVGSVGElement.getIntersectionList')
@DocsEditable()
- List<Node> getIntersectionList(Rect rect, SvgElement referenceElement) => _blink.Native_SVGSVGElement_getIntersectionList_Callback(this, rect, referenceElement);
+ List<Node> getIntersectionList(Rect rect, SvgElement referenceElement) => _blink.BlinkSVGSVGElement.$getIntersectionList_Callback(this, rect, referenceElement);
@DomName('SVGSVGElement.pauseAnimations')
@DocsEditable()
- void pauseAnimations() => _blink.Native_SVGSVGElement_pauseAnimations_Callback(this);
+ void pauseAnimations() => _blink.BlinkSVGSVGElement.$pauseAnimations_Callback(this);
@DomName('SVGSVGElement.setCurrentTime')
@DocsEditable()
- void setCurrentTime(num seconds) => _blink.Native_SVGSVGElement_setCurrentTime_Callback(this, seconds);
+ void setCurrentTime(num seconds) => _blink.BlinkSVGSVGElement.$setCurrentTime_Callback(this, seconds);
@DomName('SVGSVGElement.suspendRedraw')
@DocsEditable()
- int suspendRedraw(int maxWaitMilliseconds) => _blink.Native_SVGSVGElement_suspendRedraw_Callback(this, maxWaitMilliseconds);
+ int suspendRedraw(int maxWaitMilliseconds) => _blink.BlinkSVGSVGElement.$suspendRedraw_Callback(this, maxWaitMilliseconds);
@DomName('SVGSVGElement.unpauseAnimations')
@DocsEditable()
- void unpauseAnimations() => _blink.Native_SVGSVGElement_unpauseAnimations_Callback(this);
+ void unpauseAnimations() => _blink.BlinkSVGSVGElement.$unpauseAnimations_Callback(this);
@DomName('SVGSVGElement.unsuspendRedraw')
@DocsEditable()
- void unsuspendRedraw(int suspendHandleId) => _blink.Native_SVGSVGElement_unsuspendRedraw_Callback(this, suspendHandleId);
+ void unsuspendRedraw(int suspendHandleId) => _blink.BlinkSVGSVGElement.$unsuspendRedraw_Callback(this, suspendHandleId);
@DomName('SVGSVGElement.unsuspendRedrawAll')
@DocsEditable()
- void unsuspendRedrawAll() => _blink.Native_SVGSVGElement_unsuspendRedrawAll_Callback(this);
+ void unsuspendRedrawAll() => _blink.BlinkSVGSVGElement.$unsuspendRedrawAll_Callback(this);
@DomName('SVGSVGElement.preserveAspectRatio')
@DocsEditable()
- AnimatedPreserveAspectRatio get preserveAspectRatio => _blink.Native_SVGSVGElement_preserveAspectRatio_Getter(this);
+ AnimatedPreserveAspectRatio get preserveAspectRatio => _blink.BlinkSVGSVGElement.$preserveAspectRatio_Getter(this);
@DomName('SVGSVGElement.viewBox')
@DocsEditable()
- AnimatedRect get viewBox => _blink.Native_SVGSVGElement_viewBox_Getter(this);
+ AnimatedRect get viewBox => _blink.BlinkSVGSVGElement.$viewBox_Getter(this);
@DomName('SVGSVGElement.zoomAndPan')
@DocsEditable()
- int get zoomAndPan => _blink.Native_SVGSVGElement_zoomAndPan_Getter(this);
+ int get zoomAndPan => _blink.BlinkSVGSVGElement.$zoomAndPan_Getter(this);
@DomName('SVGSVGElement.zoomAndPan')
@DocsEditable()
- void set zoomAndPan(int value) => _blink.Native_SVGSVGElement_zoomAndPan_Setter(this, value);
+ void set zoomAndPan(int value) => _blink.BlinkSVGSVGElement.$zoomAndPan_Setter(this, value);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -6987,11 +6987,11 @@ class SymbolElement extends SvgElement implements FitToViewBox {
@DomName('SVGSymbolElement.preserveAspectRatio')
@DocsEditable()
- AnimatedPreserveAspectRatio get preserveAspectRatio => _blink.Native_SVGSymbolElement_preserveAspectRatio_Getter(this);
+ AnimatedPreserveAspectRatio get preserveAspectRatio => _blink.BlinkSVGSymbolElement.$preserveAspectRatio_Getter(this);
@DomName('SVGSymbolElement.viewBox')
@DocsEditable()
- AnimatedRect get viewBox => _blink.Native_SVGSymbolElement_viewBox_Getter(this);
+ AnimatedRect get viewBox => _blink.BlinkSVGSymbolElement.$viewBox_Getter(this);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -7035,19 +7035,19 @@ abstract class Tests extends NativeFieldWrapperClass2 {
@DomName('SVGTests.requiredExtensions')
@DocsEditable()
- StringList get requiredExtensions => _blink.Native_SVGTests_requiredExtensions_Getter(this);
+ StringList get requiredExtensions => _blink.BlinkSVGTests.$requiredExtensions_Getter(this);
@DomName('SVGTests.requiredFeatures')
@DocsEditable()
- StringList get requiredFeatures => _blink.Native_SVGTests_requiredFeatures_Getter(this);
+ StringList get requiredFeatures => _blink.BlinkSVGTests.$requiredFeatures_Getter(this);
@DomName('SVGTests.systemLanguage')
@DocsEditable()
- StringList get systemLanguage => _blink.Native_SVGTests_systemLanguage_Getter(this);
+ StringList get systemLanguage => _blink.BlinkSVGTests.$systemLanguage_Getter(this);
@DomName('SVGTests.hasExtension')
@DocsEditable()
- bool hasExtension(String extension) => _blink.Native_SVGTests_hasExtension_Callback(this, extension);
+ bool hasExtension(String extension) => _blink.BlinkSVGTests.$hasExtension_Callback(this, extension);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -7084,47 +7084,47 @@ class TextContentElement extends GraphicsElement {
@DomName('SVGTextContentElement.lengthAdjust')
@DocsEditable()
- AnimatedEnumeration get lengthAdjust => _blink.Native_SVGTextContentElement_lengthAdjust_Getter(this);
+ AnimatedEnumeration get lengthAdjust => _blink.BlinkSVGTextContentElement.$lengthAdjust_Getter(this);
@DomName('SVGTextContentElement.textLength')
@DocsEditable()
- AnimatedLength get textLength => _blink.Native_SVGTextContentElement_textLength_Getter(this);
+ AnimatedLength get textLength => _blink.BlinkSVGTextContentElement.$textLength_Getter(this);
@DomName('SVGTextContentElement.getCharNumAtPosition')
@DocsEditable()
- int getCharNumAtPosition(Point point) => _blink.Native_SVGTextContentElement_getCharNumAtPosition_Callback(this, point);
+ int getCharNumAtPosition(Point point) => _blink.BlinkSVGTextContentElement.$getCharNumAtPosition_Callback(this, point);
@DomName('SVGTextContentElement.getComputedTextLength')
@DocsEditable()
- double getComputedTextLength() => _blink.Native_SVGTextContentElement_getComputedTextLength_Callback(this);
+ double getComputedTextLength() => _blink.BlinkSVGTextContentElement.$getComputedTextLength_Callback(this);
@DomName('SVGTextContentElement.getEndPositionOfChar')
@DocsEditable()
- Point getEndPositionOfChar(int offset) => _blink.Native_SVGTextContentElement_getEndPositionOfChar_Callback(this, offset);
+ Point getEndPositionOfChar(int offset) => _blink.BlinkSVGTextContentElement.$getEndPositionOfChar_Callback(this, offset);
@DomName('SVGTextContentElement.getExtentOfChar')
@DocsEditable()
- Rect getExtentOfChar(int offset) => _blink.Native_SVGTextContentElement_getExtentOfChar_Callback(this, offset);
+ Rect getExtentOfChar(int offset) => _blink.BlinkSVGTextContentElement.$getExtentOfChar_Callback(this, offset);
@DomName('SVGTextContentElement.getNumberOfChars')
@DocsEditable()
- int getNumberOfChars() => _blink.Native_SVGTextContentElement_getNumberOfChars_Callback(this);
+ int getNumberOfChars() => _blink.BlinkSVGTextContentElement.$getNumberOfChars_Callback(this);
@DomName('SVGTextContentElement.getRotationOfChar')
@DocsEditable()
- double getRotationOfChar(int offset) => _blink.Native_SVGTextContentElement_getRotationOfChar_Callback(this, offset);
+ double getRotationOfChar(int offset) => _blink.BlinkSVGTextContentElement.$getRotationOfChar_Callback(this, offset);
@DomName('SVGTextContentElement.getStartPositionOfChar')
@DocsEditable()
- Point getStartPositionOfChar(int offset) => _blink.Native_SVGTextContentElement_getStartPositionOfChar_Callback(this, offset);
+ Point getStartPositionOfChar(int offset) => _blink.BlinkSVGTextContentElement.$getStartPositionOfChar_Callback(this, offset);
@DomName('SVGTextContentElement.getSubStringLength')
@DocsEditable()
- double getSubStringLength(int offset, int length) => _blink.Native_SVGTextContentElement_getSubStringLength_Callback(this, offset, length);
+ double getSubStringLength(int offset, int length) => _blink.BlinkSVGTextContentElement.$getSubStringLength_Callback(this, offset, length);
@DomName('SVGTextContentElement.selectSubString')
@DocsEditable()
- void selectSubString(int offset, int length) => _blink.Native_SVGTextContentElement_selectSubString_Callback(this, offset, length);
+ void selectSubString(int offset, int length) => _blink.BlinkSVGTextContentElement.$selectSubString_Callback(this, offset, length);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -7198,19 +7198,19 @@ class TextPathElement extends TextContentElement implements UriReference {
@DomName('SVGTextPathElement.method')
@DocsEditable()
- AnimatedEnumeration get method => _blink.Native_SVGTextPathElement_method_Getter(this);
+ AnimatedEnumeration get method => _blink.BlinkSVGTextPathElement.$method_Getter(this);
@DomName('SVGTextPathElement.spacing')
@DocsEditable()
- AnimatedEnumeration get spacing => _blink.Native_SVGTextPathElement_spacing_Getter(this);
+ AnimatedEnumeration get spacing => _blink.BlinkSVGTextPathElement.$spacing_Getter(this);
@DomName('SVGTextPathElement.startOffset')
@DocsEditable()
- AnimatedLength get startOffset => _blink.Native_SVGTextPathElement_startOffset_Getter(this);
+ AnimatedLength get startOffset => _blink.BlinkSVGTextPathElement.$startOffset_Getter(this);
@DomName('SVGTextPathElement.href')
@DocsEditable()
- AnimatedString get href => _blink.Native_SVGTextPathElement_href_Getter(this);
+ AnimatedString get href => _blink.BlinkSVGTextPathElement.$href_Getter(this);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -7235,23 +7235,23 @@ class TextPositioningElement extends TextContentElement {
@DomName('SVGTextPositioningElement.dx')
@DocsEditable()
- AnimatedLengthList get dx => _blink.Native_SVGTextPositioningElement_dx_Getter(this);
+ AnimatedLengthList get dx => _blink.BlinkSVGTextPositioningElement.$dx_Getter(this);
@DomName('SVGTextPositioningElement.dy')
@DocsEditable()
- AnimatedLengthList get dy => _blink.Native_SVGTextPositioningElement_dy_Getter(this);
+ AnimatedLengthList get dy => _blink.BlinkSVGTextPositioningElement.$dy_Getter(this);
@DomName('SVGTextPositioningElement.rotate')
@DocsEditable()
- AnimatedNumberList get rotate => _blink.Native_SVGTextPositioningElement_rotate_Getter(this);
+ AnimatedNumberList get rotate => _blink.BlinkSVGTextPositioningElement.$rotate_Getter(this);
@DomName('SVGTextPositioningElement.x')
@DocsEditable()
- AnimatedLengthList get x => _blink.Native_SVGTextPositioningElement_x_Getter(this);
+ AnimatedLengthList get x => _blink.BlinkSVGTextPositioningElement.$x_Getter(this);
@DomName('SVGTextPositioningElement.y')
@DocsEditable()
- AnimatedLengthList get y => _blink.Native_SVGTextPositioningElement_y_Getter(this);
+ AnimatedLengthList get y => _blink.BlinkSVGTextPositioningElement.$y_Getter(this);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -7323,39 +7323,39 @@ class Transform extends NativeFieldWrapperClass2 {
@DomName('SVGTransform.angle')
@DocsEditable()
- double get angle => _blink.Native_SVGTransform_angle_Getter(this);
+ double get angle => _blink.BlinkSVGTransform.$angle_Getter(this);
@DomName('SVGTransform.matrix')
@DocsEditable()
- Matrix get matrix => _blink.Native_SVGTransform_matrix_Getter(this);
+ Matrix get matrix => _blink.BlinkSVGTransform.$matrix_Getter(this);
@DomName('SVGTransform.type')
@DocsEditable()
- int get type => _blink.Native_SVGTransform_type_Getter(this);
+ int get type => _blink.BlinkSVGTransform.$type_Getter(this);
@DomName('SVGTransform.setMatrix')
@DocsEditable()
- void setMatrix(Matrix matrix) => _blink.Native_SVGTransform_setMatrix_Callback(this, matrix);
+ void setMatrix(Matrix matrix) => _blink.BlinkSVGTransform.$setMatrix_Callback(this, matrix);
@DomName('SVGTransform.setRotate')
@DocsEditable()
- void setRotate(num angle, num cx, num cy) => _blink.Native_SVGTransform_setRotate_Callback(this, angle, cx, cy);
+ void setRotate(num angle, num cx, num cy) => _blink.BlinkSVGTransform.$setRotate_Callback(this, angle, cx, cy);
@DomName('SVGTransform.setScale')
@DocsEditable()
- void setScale(num sx, num sy) => _blink.Native_SVGTransform_setScale_Callback(this, sx, sy);
+ void setScale(num sx, num sy) => _blink.BlinkSVGTransform.$setScale_Callback(this, sx, sy);
@DomName('SVGTransform.setSkewX')
@DocsEditable()
- void setSkewX(num angle) => _blink.Native_SVGTransform_setSkewX_Callback(this, angle);
+ void setSkewX(num angle) => _blink.BlinkSVGTransform.$setSkewX_Callback(this, angle);
@DomName('SVGTransform.setSkewY')
@DocsEditable()
- void setSkewY(num angle) => _blink.Native_SVGTransform_setSkewY_Callback(this, angle);
+ void setSkewY(num angle) => _blink.BlinkSVGTransform.$setSkewY_Callback(this, angle);
@DomName('SVGTransform.setTranslate')
@DocsEditable()
- void setTranslate(num tx, num ty) => _blink.Native_SVGTransform_setTranslate_Callback(this, tx, ty);
+ void setTranslate(num tx, num ty) => _blink.BlinkSVGTransform.$setTranslate_Callback(this, tx, ty);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -7374,7 +7374,7 @@ class TransformList extends NativeFieldWrapperClass2 with ListMixin<Transform>,
@DomName('SVGTransformList.numberOfItems')
@DocsEditable()
- int get numberOfItems => _blink.Native_SVGTransformList_numberOfItems_Getter(this);
+ int get numberOfItems => _blink.BlinkSVGTransformList.$numberOfItems_Getter(this);
Transform operator[](int index) {
if (index < 0 || index >= length)
@@ -7424,39 +7424,39 @@ class TransformList extends NativeFieldWrapperClass2 with ListMixin<Transform>,
@DomName('SVGTransformList.appendItem')
@DocsEditable()
- Transform appendItem(Transform item) => _blink.Native_SVGTransformList_appendItem_Callback(this, item);
+ Transform appendItem(Transform item) => _blink.BlinkSVGTransformList.$appendItem_Callback(this, item);
@DomName('SVGTransformList.clear')
@DocsEditable()
- void clear() => _blink.Native_SVGTransformList_clear_Callback(this);
+ void clear() => _blink.BlinkSVGTransformList.$clear_Callback(this);
@DomName('SVGTransformList.consolidate')
@DocsEditable()
- Transform consolidate() => _blink.Native_SVGTransformList_consolidate_Callback(this);
+ Transform consolidate() => _blink.BlinkSVGTransformList.$consolidate_Callback(this);
@DomName('SVGTransformList.createSVGTransformFromMatrix')
@DocsEditable()
- Transform createSvgTransformFromMatrix(Matrix matrix) => _blink.Native_SVGTransformList_createSVGTransformFromMatrix_Callback(this, matrix);
+ Transform createSvgTransformFromMatrix(Matrix matrix) => _blink.BlinkSVGTransformList.$createSVGTransformFromMatrix_Callback(this, matrix);
@DomName('SVGTransformList.getItem')
@DocsEditable()
- Transform getItem(int index) => _blink.Native_SVGTransformList_getItem_Callback(this, index);
+ Transform getItem(int index) => _blink.BlinkSVGTransformList.$getItem_Callback(this, index);
@DomName('SVGTransformList.initialize')
@DocsEditable()
- Transform initialize(Transform item) => _blink.Native_SVGTransformList_initialize_Callback(this, item);
+ Transform initialize(Transform item) => _blink.BlinkSVGTransformList.$initialize_Callback(this, item);
@DomName('SVGTransformList.insertItemBefore')
@DocsEditable()
- Transform insertItemBefore(Transform item, int index) => _blink.Native_SVGTransformList_insertItemBefore_Callback(this, item, index);
+ Transform insertItemBefore(Transform item, int index) => _blink.BlinkSVGTransformList.$insertItemBefore_Callback(this, item, index);
@DomName('SVGTransformList.removeItem')
@DocsEditable()
- Transform removeItem(int index) => _blink.Native_SVGTransformList_removeItem_Callback(this, index);
+ Transform removeItem(int index) => _blink.BlinkSVGTransformList.$removeItem_Callback(this, index);
@DomName('SVGTransformList.replaceItem')
@DocsEditable()
- Transform replaceItem(Transform item, int index) => _blink.Native_SVGTransformList_replaceItem_Callback(this, item, index);
+ Transform replaceItem(Transform item, int index) => _blink.BlinkSVGTransformList.$replaceItem_Callback(this, item, index);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -7502,7 +7502,7 @@ abstract class UriReference extends NativeFieldWrapperClass2 {
@DomName('SVGURIReference.href')
@DocsEditable()
- AnimatedString get href => _blink.Native_SVGURIReference_href_Getter(this);
+ AnimatedString get href => _blink.BlinkSVGURIReference.$href_Getter(this);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -7531,47 +7531,47 @@ class UseElement extends GraphicsElement implements UriReference, Tests {
@DomName('SVGUseElement.animatedInstanceRoot')
@DocsEditable()
- ElementInstance get animatedInstanceRoot => _blink.Native_SVGUseElement_animatedInstanceRoot_Getter(this);
+ ElementInstance get animatedInstanceRoot => _blink.BlinkSVGUseElement.$animatedInstanceRoot_Getter(this);
@DomName('SVGUseElement.height')
@DocsEditable()
- AnimatedLength get height => _blink.Native_SVGUseElement_height_Getter(this);
+ AnimatedLength get height => _blink.BlinkSVGUseElement.$height_Getter(this);
@DomName('SVGUseElement.instanceRoot')
@DocsEditable()
- ElementInstance get instanceRoot => _blink.Native_SVGUseElement_instanceRoot_Getter(this);
+ ElementInstance get instanceRoot => _blink.BlinkSVGUseElement.$instanceRoot_Getter(this);
@DomName('SVGUseElement.width')
@DocsEditable()
- AnimatedLength get width => _blink.Native_SVGUseElement_width_Getter(this);
+ AnimatedLength get width => _blink.BlinkSVGUseElement.$width_Getter(this);
@DomName('SVGUseElement.x')
@DocsEditable()
- AnimatedLength get x => _blink.Native_SVGUseElement_x_Getter(this);
+ AnimatedLength get x => _blink.BlinkSVGUseElement.$x_Getter(this);
@DomName('SVGUseElement.y')
@DocsEditable()
- AnimatedLength get y => _blink.Native_SVGUseElement_y_Getter(this);
+ AnimatedLength get y => _blink.BlinkSVGUseElement.$y_Getter(this);
@DomName('SVGUseElement.requiredExtensions')
@DocsEditable()
- StringList get requiredExtensions => _blink.Native_SVGUseElement_requiredExtensions_Getter(this);
+ StringList get requiredExtensions => _blink.BlinkSVGUseElement.$requiredExtensions_Getter(this);
@DomName('SVGUseElement.requiredFeatures')
@DocsEditable()
- StringList get requiredFeatures => _blink.Native_SVGUseElement_requiredFeatures_Getter(this);
+ StringList get requiredFeatures => _blink.BlinkSVGUseElement.$requiredFeatures_Getter(this);
@DomName('SVGUseElement.systemLanguage')
@DocsEditable()
- StringList get systemLanguage => _blink.Native_SVGUseElement_systemLanguage_Getter(this);
+ StringList get systemLanguage => _blink.BlinkSVGUseElement.$systemLanguage_Getter(this);
@DomName('SVGUseElement.hasExtension')
@DocsEditable()
- bool hasExtension(String extension) => _blink.Native_SVGUseElement_hasExtension_Callback(this, extension);
+ bool hasExtension(String extension) => _blink.BlinkSVGUseElement.$hasExtension_Callback(this, extension);
@DomName('SVGUseElement.href')
@DocsEditable()
- AnimatedString get href => _blink.Native_SVGUseElement_href_Getter(this);
+ AnimatedString get href => _blink.BlinkSVGUseElement.$href_Getter(this);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -7600,23 +7600,23 @@ class ViewElement extends SvgElement implements FitToViewBox, ZoomAndPan {
@DomName('SVGViewElement.viewTarget')
@DocsEditable()
- StringList get viewTarget => _blink.Native_SVGViewElement_viewTarget_Getter(this);
+ StringList get viewTarget => _blink.BlinkSVGViewElement.$viewTarget_Getter(this);
@DomName('SVGViewElement.preserveAspectRatio')
@DocsEditable()
- AnimatedPreserveAspectRatio get preserveAspectRatio => _blink.Native_SVGViewElement_preserveAspectRatio_Getter(this);
+ AnimatedPreserveAspectRatio get preserveAspectRatio => _blink.BlinkSVGViewElement.$preserveAspectRatio_Getter(this);
@DomName('SVGViewElement.viewBox')
@DocsEditable()
- AnimatedRect get viewBox => _blink.Native_SVGViewElement_viewBox_Getter(this);
+ AnimatedRect get viewBox => _blink.BlinkSVGViewElement.$viewBox_Getter(this);
@DomName('SVGViewElement.zoomAndPan')
@DocsEditable()
- int get zoomAndPan => _blink.Native_SVGViewElement_zoomAndPan_Getter(this);
+ int get zoomAndPan => _blink.BlinkSVGViewElement.$zoomAndPan_Getter(this);
@DomName('SVGViewElement.zoomAndPan')
@DocsEditable()
- void set zoomAndPan(int value) => _blink.Native_SVGViewElement_zoomAndPan_Setter(this, value);
+ void set zoomAndPan(int value) => _blink.BlinkSVGViewElement.$zoomAndPan_Setter(this, value);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -7635,47 +7635,47 @@ class ViewSpec extends NativeFieldWrapperClass2 implements FitToViewBox, ZoomAnd
@DomName('SVGViewSpec.preserveAspectRatioString')
@DocsEditable()
- String get preserveAspectRatioString => _blink.Native_SVGViewSpec_preserveAspectRatioString_Getter(this);
+ String get preserveAspectRatioString => _blink.BlinkSVGViewSpec.$preserveAspectRatioString_Getter(this);
@DomName('SVGViewSpec.transform')
@DocsEditable()
- TransformList get transform => _blink.Native_SVGViewSpec_transform_Getter(this);
+ TransformList get transform => _blink.BlinkSVGViewSpec.$transform_Getter(this);
@DomName('SVGViewSpec.transformString')
@DocsEditable()
- String get transformString => _blink.Native_SVGViewSpec_transformString_Getter(this);
+ String get transformString => _blink.BlinkSVGViewSpec.$transformString_Getter(this);
@DomName('SVGViewSpec.viewBoxString')
@DocsEditable()
- String get viewBoxString => _blink.Native_SVGViewSpec_viewBoxString_Getter(this);
+ String get viewBoxString => _blink.BlinkSVGViewSpec.$viewBoxString_Getter(this);
@DomName('SVGViewSpec.viewTarget')
@DocsEditable()
- SvgElement get viewTarget => _blink.Native_SVGViewSpec_viewTarget_Getter(this);
+ SvgElement get viewTarget => _blink.BlinkSVGViewSpec.$viewTarget_Getter(this);
@DomName('SVGViewSpec.viewTargetString')
@DocsEditable()
- String get viewTargetString => _blink.Native_SVGViewSpec_viewTargetString_Getter(this);
+ String get viewTargetString => _blink.BlinkSVGViewSpec.$viewTargetString_Getter(this);
@DomName('SVGViewSpec.preserveAspectRatio')
@DocsEditable()
@Experimental() // nonstandard
- AnimatedPreserveAspectRatio get preserveAspectRatio => _blink.Native_SVGViewSpec_preserveAspectRatio_Getter(this);
+ AnimatedPreserveAspectRatio get preserveAspectRatio => _blink.BlinkSVGViewSpec.$preserveAspectRatio_Getter(this);
@DomName('SVGViewSpec.viewBox')
@DocsEditable()
@Experimental() // nonstandard
- AnimatedRect get viewBox => _blink.Native_SVGViewSpec_viewBox_Getter(this);
+ AnimatedRect get viewBox => _blink.BlinkSVGViewSpec.$viewBox_Getter(this);
@DomName('SVGViewSpec.zoomAndPan')
@DocsEditable()
@Experimental() // nonstandard
- int get zoomAndPan => _blink.Native_SVGViewSpec_zoomAndPan_Getter(this);
+ int get zoomAndPan => _blink.BlinkSVGViewSpec.$zoomAndPan_Getter(this);
@DomName('SVGViewSpec.zoomAndPan')
@DocsEditable()
@Experimental() // nonstandard
- void set zoomAndPan(int value) => _blink.Native_SVGViewSpec_zoomAndPan_Setter(this, value);
+ void set zoomAndPan(int value) => _blink.BlinkSVGViewSpec.$zoomAndPan_Setter(this, value);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -7706,11 +7706,11 @@ abstract class ZoomAndPan extends NativeFieldWrapperClass2 {
@DomName('SVGZoomAndPan.zoomAndPan')
@DocsEditable()
- int get zoomAndPan => _blink.Native_SVGZoomAndPan_zoomAndPan_Getter(this);
+ int get zoomAndPan => _blink.BlinkSVGZoomAndPan.$zoomAndPan_Getter(this);
@DomName('SVGZoomAndPan.zoomAndPan')
@DocsEditable()
- void set zoomAndPan(int value) => _blink.Native_SVGZoomAndPan_zoomAndPan_Setter(this, value);
+ void set zoomAndPan(int value) => _blink.BlinkSVGZoomAndPan.$zoomAndPan_Setter(this, value);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -7729,23 +7729,23 @@ class ZoomEvent extends UIEvent {
@DomName('SVGZoomEvent.newScale')
@DocsEditable()
- double get newScale => _blink.Native_SVGZoomEvent_newScale_Getter(this);
+ double get newScale => _blink.BlinkSVGZoomEvent.$newScale_Getter(this);
@DomName('SVGZoomEvent.newTranslate')
@DocsEditable()
- Point get newTranslate => _blink.Native_SVGZoomEvent_newTranslate_Getter(this);
+ Point get newTranslate => _blink.BlinkSVGZoomEvent.$newTranslate_Getter(this);
@DomName('SVGZoomEvent.previousScale')
@DocsEditable()
- double get previousScale => _blink.Native_SVGZoomEvent_previousScale_Getter(this);
+ double get previousScale => _blink.BlinkSVGZoomEvent.$previousScale_Getter(this);
@DomName('SVGZoomEvent.previousTranslate')
@DocsEditable()
- Point get previousTranslate => _blink.Native_SVGZoomEvent_previousTranslate_Getter(this);
+ Point get previousTranslate => _blink.BlinkSVGZoomEvent.$previousTranslate_Getter(this);
@DomName('SVGZoomEvent.zoomRectScreen')
@DocsEditable()
- Rect get zoomRectScreen => _blink.Native_SVGZoomEvent_zoomRectScreen_Getter(this);
+ Rect get zoomRectScreen => _blink.BlinkSVGZoomEvent.$zoomRectScreen_Getter(this);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -7764,15 +7764,15 @@ class _ElementInstanceList extends NativeFieldWrapperClass2 with ListMixin<Eleme
@DomName('SVGElementInstanceList.length')
@DocsEditable()
- int get length => _blink.Native_SVGElementInstanceList_length_Getter(this);
+ int get length => _blink.BlinkSVGElementInstanceList.$length_Getter(this);
ElementInstance operator[](int index) {
if (index < 0 || index >= length)
throw new RangeError.range(index, 0, length);
- return _blink.Native_SVGElementInstanceList_NativeIndexed_Getter(this, index);
+ return _blink.BlinkSVGElementInstanceList.$NativeIndexed_Getter(this, index);
}
- ElementInstance _nativeIndexedGetter(int index) => _blink.Native_SVGElementInstanceList_NativeIndexed_Getter(this, index);
+ ElementInstance _nativeIndexedGetter(int index) => _blink.BlinkSVGElementInstanceList.$NativeIndexed_Getter(this, index);
void operator[]=(int index, ElementInstance value) {
throw new UnsupportedError("Cannot assign element of immutable List.");
@@ -7814,7 +7814,7 @@ class _ElementInstanceList extends NativeFieldWrapperClass2 with ListMixin<Eleme
@DomName('SVGElementInstanceList.item')
@DocsEditable()
- ElementInstance item(int index) => _blink.Native_SVGElementInstanceList_item_Callback(this, index);
+ ElementInstance item(int index) => _blink.BlinkSVGElementInstanceList.$item_Callback(this, index);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -7855,19 +7855,19 @@ class _GradientElement extends SvgElement implements UriReference {
@DomName('SVGGradientElement.gradientTransform')
@DocsEditable()
- AnimatedTransformList get gradientTransform => _blink.Native_SVGGradientElement_gradientTransform_Getter(this);
+ AnimatedTransformList get gradientTransform => _blink.BlinkSVGGradientElement.$gradientTransform_Getter(this);
@DomName('SVGGradientElement.gradientUnits')
@DocsEditable()
- AnimatedEnumeration get gradientUnits => _blink.Native_SVGGradientElement_gradientUnits_Getter(this);
+ AnimatedEnumeration get gradientUnits => _blink.BlinkSVGGradientElement.$gradientUnits_Getter(this);
@DomName('SVGGradientElement.spreadMethod')
@DocsEditable()
- AnimatedEnumeration get spreadMethod => _blink.Native_SVGGradientElement_spreadMethod_Getter(this);
+ AnimatedEnumeration get spreadMethod => _blink.BlinkSVGGradientElement.$spreadMethod_Getter(this);
@DomName('SVGGradientElement.href')
@DocsEditable()
- AnimatedString get href => _blink.Native_SVGGradientElement_href_Getter(this);
+ AnimatedString get href => _blink.BlinkSVGGradientElement.$href_Getter(this);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
« no previous file with comments | « sdk/lib/indexed_db/dartium/indexed_db_dartium.dart ('k') | sdk/lib/web_audio/dartium/web_audio_dartium.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698