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

Side by Side Diff: tools/dom/templates/html/dartium/html_dartium.darttemplate

Issue 2875773003: Roll 50: Updated for push to origin/master. (Closed)
Patch Set: Roll 50: Updated to latest Created 3 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
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 // DO NOT EDIT 5 // DO NOT EDIT
6 // Auto-generated dart:html library. 6 // Auto-generated dart:html library.
7 7
8 /** 8 /**
9 * HTML elements and other resources for web-based applications that need to 9 * HTML elements and other resources for web-based applications that need to
10 * interact with the browser and the DOM (Document Object Model). 10 * interact with the browser and the DOM (Document Object Model).
(...skipping 359 matching lines...) Expand 10 before | Expand all | Expand 10 after
370 _createCustomUpgrader(Type customElementClass, $this) { 370 _createCustomUpgrader(Type customElementClass, $this) {
371 return _blink.Blink_Utils.setInstanceInterceptor($this, customElementClass, cu stomElement: true); 371 return _blink.Blink_Utils.setInstanceInterceptor($this, customElementClass, cu stomElement: true);
372 } 372 }
373 373
374 $else 374 $else
375 class DartHtmlDomObject extends NativeFieldWrapperClass2 {} 375 class DartHtmlDomObject extends NativeFieldWrapperClass2 {}
376 376
377 _createCustomUpgrader(Type customElementClass, $this) => $this; 377 _createCustomUpgrader(Type customElementClass, $this) => $this;
378 378
379 $endif 379 $endif
380
381 /**
382 * Emitted for any setlike IDL entry needs a callback signature.
383 * Today there is only one.
384 */
385 @DomName('FontFaceSetForEachCallback')
386 @Experimental() // untriaged
387 typedef void FontFaceSetForEachCallback(
388 FontFace fontFace, FontFace fontFaceAgain, FontFaceSet set);
389
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698