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

Side by Side Diff: tools/dom/templates/html/dart2js/html_dart2js.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 - unless you are editing documentation as per: 5 // DO NOT EDIT - unless you are editing documentation as per:
6 // https://code.google.com/p/dart/wiki/ContributingHTMLDocumentation 6 // https://code.google.com/p/dart/wiki/ContributingHTMLDocumentation
7 // Auto-generated dart:html library. 7 // Auto-generated dart:html library.
8 8
9 /** 9 /**
10 * HTML elements and other resources for web-based applications that need to 10 * HTML elements and other resources for web-based applications that need to
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
139 * with full access to the DOM. 139 * with full access to the DOM.
140 * Note: this API is still evolving and may move to dart:isolate. 140 * Note: this API is still evolving and may move to dart:isolate.
141 */ 141 */
142 @Experimental() 142 @Experimental()
143 Future<Isolate> spawnDomUri(Uri uri, List<String> args, message) { 143 Future<Isolate> spawnDomUri(Uri uri, List<String> args, message) {
144 // TODO(17738): Implement this. 144 // TODO(17738): Implement this.
145 throw new UnimplementedError(); 145 throw new UnimplementedError();
146 } 146 }
147 147
148 createCustomUpgrader(Type customElementClass, $this) => $this; 148 createCustomUpgrader(Type customElementClass, $this) => $this;
149
150 /**
151 * Emitted for any setlike IDL entry needs a callback signature.
152 * Today there is only one.
153 */
154 @DomName('FontFaceSetForEachCallback')
155 @Experimental() // untriaged
156 typedef void FontFaceSetForEachCallback(
157 FontFace fontFace, FontFace fontFaceAgain, FontFaceSet set);
158
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698