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

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

Issue 283043003: Suppress cloning EventTarget methods in subtypes when using blink (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Regen Created 6 years, 7 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:_internal' hide deprecated; 5 import 'dart:_internal' 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 import 'dart:_blink' as _blink; 9 import 'dart:_blink' as _blink;
10 // DO NOT EDIT 10 // DO NOT EDIT
(...skipping 1380 matching lines...) Expand 10 before | Expand all | Expand 10 after
1391 ElementInstance get nextSibling => _blink.Native_SVGElementInstance_nextSiblin g_Getter(this); 1391 ElementInstance get nextSibling => _blink.Native_SVGElementInstance_nextSiblin g_Getter(this);
1392 1392
1393 @DomName('SVGElementInstance.parentNode') 1393 @DomName('SVGElementInstance.parentNode')
1394 @DocsEditable() 1394 @DocsEditable()
1395 ElementInstance get parentNode => _blink.Native_SVGElementInstance_parentNode_ Getter(this); 1395 ElementInstance get parentNode => _blink.Native_SVGElementInstance_parentNode_ Getter(this);
1396 1396
1397 @DomName('SVGElementInstance.previousSibling') 1397 @DomName('SVGElementInstance.previousSibling')
1398 @DocsEditable() 1398 @DocsEditable()
1399 ElementInstance get previousSibling => _blink.Native_SVGElementInstance_previo usSibling_Getter(this); 1399 ElementInstance get previousSibling => _blink.Native_SVGElementInstance_previo usSibling_Getter(this);
1400 1400
1401 @DomName('SVGElementInstance.addEventListener')
1402 @DocsEditable()
1403 @Experimental() // untriaged
1404 void addEventListener(String type, EventListener listener, [bool useCapture]) => _blink.Native_SVGElementInstance_addEventListener_Callback(this, type, listen er, useCapture);
1405
1406 @DomName('SVGElementInstance.dispatchEvent')
1407 @DocsEditable()
1408 @Experimental() // untriaged
1409 bool dispatchEvent(Event event) => _blink.Native_SVGElementInstance_dispatchEv ent_Callback(this, event);
1410
1411 @DomName('SVGElementInstance.removeEventListener')
1412 @DocsEditable()
1413 @Experimental() // untriaged
1414 void removeEventListener(String type, EventListener listener, [bool useCapture ]) => _blink.Native_SVGElementInstance_removeEventListener_Callback(this, type, listener, useCapture);
1415
1416 /// Stream of `abort` events handled by this [ElementInstance]. 1401 /// Stream of `abort` events handled by this [ElementInstance].
1417 @DomName('SVGElementInstance.onabort') 1402 @DomName('SVGElementInstance.onabort')
1418 @DocsEditable() 1403 @DocsEditable()
1419 Stream<Event> get onAbort => abortEvent.forTarget(this); 1404 Stream<Event> get onAbort => abortEvent.forTarget(this);
1420 1405
1421 /// Stream of `beforecopy` events handled by this [ElementInstance]. 1406 /// Stream of `beforecopy` events handled by this [ElementInstance].
1422 @DomName('SVGElementInstance.onbeforecopy') 1407 @DomName('SVGElementInstance.onbeforecopy')
1423 @DocsEditable() 1408 @DocsEditable()
1424 Stream<Event> get onBeforeCopy => beforeCopyEvent.forTarget(this); 1409 Stream<Event> get onBeforeCopy => beforeCopyEvent.forTarget(this);
1425 1410
(...skipping 6851 matching lines...) Expand 10 before | Expand all | Expand 10 after
8277 @DocsEditable() 8262 @DocsEditable()
8278 factory _SVGVKernElement() => _SvgElementFactoryProvider.createSvgElement_tag( "vkern"); 8263 factory _SVGVKernElement() => _SvgElementFactoryProvider.createSvgElement_tag( "vkern");
8279 /** 8264 /**
8280 * Constructor instantiated by the DOM when a custom element has been created. 8265 * Constructor instantiated by the DOM when a custom element has been created.
8281 * 8266 *
8282 * This can only be called by subclasses from their created constructor. 8267 * This can only be called by subclasses from their created constructor.
8283 */ 8268 */
8284 _SVGVKernElement.created() : super.created(); 8269 _SVGVKernElement.created() : super.created();
8285 8270
8286 } 8271 }
OLDNEW
« 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