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

Side by Side Diff: sdk/lib/svg/dartium/svg_dartium.dart

Issue 32523007: Revert "Removing some deprecated members" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 library dart.dom.svg; 1 library dart.dom.svg;
2 2
3 import 'dart:async'; 3 import 'dart:async';
4 import 'dart:collection'; 4 import 'dart:collection';
5 import 'dart:_collection-dev' hide deprecated; 5 import 'dart:_collection-dev' hide deprecated;
6 import 'dart:html'; 6 import 'dart:html';
7 import 'dart:html_common'; 7 import 'dart:html_common';
8 import 'dart:nativewrappers'; 8 import 'dart:nativewrappers';
9 // DO NOT EDIT 9 // DO NOT EDIT
10 // Auto-generated dart:svg library. 10 // Auto-generated dart:svg library.
(...skipping 981 matching lines...) Expand 10 before | Expand all | Expand 10 after
992 @DocsEditable() 992 @DocsEditable()
993 ElementInstance get parentNode native "SVGElementInstance_parentNode_Getter"; 993 ElementInstance get parentNode native "SVGElementInstance_parentNode_Getter";
994 994
995 @DomName('SVGElementInstance.previousSibling') 995 @DomName('SVGElementInstance.previousSibling')
996 @DocsEditable() 996 @DocsEditable()
997 ElementInstance get previousSibling native "SVGElementInstance_previousSibling _Getter"; 997 ElementInstance get previousSibling native "SVGElementInstance_previousSibling _Getter";
998 998
999 @DomName('SVGElementInstance.addEventListener') 999 @DomName('SVGElementInstance.addEventListener')
1000 @DocsEditable() 1000 @DocsEditable()
1001 @Experimental() // untriaged 1001 @Experimental() // untriaged
1002 void _addEventListener(String type, EventListener listener, [bool useCapture]) native "SVGElementInstance_addEventListener_Callback"; 1002 void $dom_addEventListener(String type, EventListener listener, [bool useCaptu re]) native "SVGElementInstance_addEventListener_Callback";
1003 1003
1004 @DomName('SVGElementInstance.dispatchEvent') 1004 @DomName('SVGElementInstance.dispatchEvent')
1005 @DocsEditable() 1005 @DocsEditable()
1006 @Experimental() // untriaged 1006 @Experimental() // untriaged
1007 bool dispatchEvent(Event event) native "SVGElementInstance_dispatchEvent_Callb ack"; 1007 bool dispatchEvent(Event event) native "SVGElementInstance_dispatchEvent_Callb ack";
1008 1008
1009 @DomName('SVGElementInstance.removeEventListener') 1009 @DomName('SVGElementInstance.removeEventListener')
1010 @DocsEditable() 1010 @DocsEditable()
1011 @Experimental() // untriaged 1011 @Experimental() // untriaged
1012 void _removeEventListener(String type, EventListener listener, [bool useCaptur e]) native "SVGElementInstance_removeEventListener_Callback"; 1012 void $dom_removeEventListener(String type, EventListener listener, [bool useCa pture]) native "SVGElementInstance_removeEventListener_Callback";
1013 1013
1014 @DomName('SVGElementInstance.onabort') 1014 @DomName('SVGElementInstance.onabort')
1015 @DocsEditable() 1015 @DocsEditable()
1016 Stream<Event> get onAbort => abortEvent.forTarget(this); 1016 Stream<Event> get onAbort => abortEvent.forTarget(this);
1017 1017
1018 @DomName('SVGElementInstance.onbeforecopy') 1018 @DomName('SVGElementInstance.onbeforecopy')
1019 @DocsEditable() 1019 @DocsEditable()
1020 Stream<Event> get onBeforeCopy => beforeCopyEvent.forTarget(this); 1020 Stream<Event> get onBeforeCopy => beforeCopyEvent.forTarget(this);
1021 1021
1022 @DomName('SVGElementInstance.onbeforecut') 1022 @DomName('SVGElementInstance.onbeforecut')
(...skipping 6465 matching lines...) Expand 10 before | Expand all | Expand 10 after
7488 @DocsEditable() 7488 @DocsEditable()
7489 factory _SVGVKernElement() => _SvgElementFactoryProvider.createSvgElement_tag( "vkern"); 7489 factory _SVGVKernElement() => _SvgElementFactoryProvider.createSvgElement_tag( "vkern");
7490 /** 7490 /**
7491 * Constructor instantiated by the DOM when a custom element has been created. 7491 * Constructor instantiated by the DOM when a custom element has been created.
7492 * 7492 *
7493 * This can only be called by subclasses from their created constructor. 7493 * This can only be called by subclasses from their created constructor.
7494 */ 7494 */
7495 _SVGVKernElement.created() : super.created(); 7495 _SVGVKernElement.created() : super.created();
7496 7496
7497 } 7497 }
OLDNEW
« no previous file with comments | « sdk/lib/indexed_db/dartium/indexed_db_dartium.dart ('k') | sdk/lib/web_audio/dart2js/web_audio_dart2js.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698