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

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

Issue 321043003: Native method name mismatch cleanups for Dartium 36 roll. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: PTAL 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 d36bb4d011dc1b720dcd59a41b5edf54e8d14e6c..0a7963ab56a51fcf4e0fb5228539fc08ea490c64 100644
--- a/sdk/lib/svg/dartium/svg_dartium.dart
+++ b/sdk/lib/svg/dartium/svg_dartium.dart
@@ -1366,10 +1366,6 @@ class ElementInstance extends EventTarget {
@DocsEditable()
static const EventStreamProvider<Event> unloadEvent = const EventStreamProvider<Event>('unload');
- @DomName('SVGElementInstance.childNodes')
- @DocsEditable()
- List<ElementInstance> get childNodes => _blink.Native_SVGElementInstance_childNodes_Getter(this);
-
@DomName('SVGElementInstance.correspondingElement')
@DocsEditable()
SvgElement get correspondingElement => _blink.Native_SVGElementInstance_correspondingElement_Getter(this);
@@ -6775,22 +6771,6 @@ class SvgSvgElement extends GraphicsElement implements FitToViewBox, ZoomAndPan
*/
SvgSvgElement.created() : super.created();
- @DomName('SVGSVGElement.contentScriptType')
- @DocsEditable()
- String get contentScriptType => _blink.Native_SVGSVGElement_contentScriptType_Getter(this);
-
- @DomName('SVGSVGElement.contentScriptType')
- @DocsEditable()
- void set contentScriptType(String value) => _blink.Native_SVGSVGElement_contentScriptType_Setter(this, value);
-
- @DomName('SVGSVGElement.contentStyleType')
- @DocsEditable()
- String get contentStyleType => _blink.Native_SVGSVGElement_contentStyleType_Getter(this);
-
- @DomName('SVGSVGElement.contentStyleType')
- @DocsEditable()
- void set contentStyleType(String value) => _blink.Native_SVGSVGElement_contentStyleType_Setter(this, value);
-
@DomName('SVGSVGElement.currentScale')
@DocsEditable()
num get currentScale => _blink.Native_SVGSVGElement_currentScale_Getter(this);
@@ -7782,10 +7762,6 @@ class _ElementInstanceList extends NativeFieldWrapperClass2 with ListMixin<Eleme
// To suppress missing implicit constructor warnings.
factory _ElementInstanceList._() { throw new UnsupportedError("Not supported"); }
- @DomName('SVGElementInstanceList.length')
- @DocsEditable()
- int get length => _blink.Native_SVGElementInstanceList_length_Getter(this);
-
ElementInstance operator[](int index) {
if (index < 0 || index >= length)
throw new RangeError.range(index, 0, length);

Powered by Google App Engine
This is Rietveld 408576698