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

Side by Side Diff: tools/dom/templates/html/dart2js/html_dart2js.darttemplate

Issue 288873002: "Reverting 36191" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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 // 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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 part '$AUXILIARY_DIR/EventListener.dart'; 74 part '$AUXILIARY_DIR/EventListener.dart';
75 part '$AUXILIARY_DIR/EventStreamProvider.dart'; 75 part '$AUXILIARY_DIR/EventStreamProvider.dart';
76 part '$AUXILIARY_DIR/Html5NodeValidator.dart'; 76 part '$AUXILIARY_DIR/Html5NodeValidator.dart';
77 part '$AUXILIARY_DIR/ImmutableListMixin.dart'; 77 part '$AUXILIARY_DIR/ImmutableListMixin.dart';
78 part '$AUXILIARY_DIR/KeyCode.dart'; 78 part '$AUXILIARY_DIR/KeyCode.dart';
79 part '$AUXILIARY_DIR/KeyLocation.dart'; 79 part '$AUXILIARY_DIR/KeyLocation.dart';
80 part '$AUXILIARY_DIR/KeyName.dart'; 80 part '$AUXILIARY_DIR/KeyName.dart';
81 part '$AUXILIARY_DIR/KeyboardEventStream.dart'; 81 part '$AUXILIARY_DIR/KeyboardEventStream.dart';
82 part '$AUXILIARY_DIR/NodeValidatorBuilder.dart'; 82 part '$AUXILIARY_DIR/NodeValidatorBuilder.dart';
83 part '$AUXILIARY_DIR/ReadyState.dart'; 83 part '$AUXILIARY_DIR/ReadyState.dart';
84 part '$AUXILIARY_DIR/WrappedEvent.dart';
84 part '$AUXILIARY_DIR/WrappedList.dart'; 85 part '$AUXILIARY_DIR/WrappedList.dart';
85 part '$AUXILIARY_DIR/_HttpRequestUtils.dart'; 86 part '$AUXILIARY_DIR/_HttpRequestUtils.dart';
86 part '$AUXILIARY_DIR/_ListIterators.dart'; 87 part '$AUXILIARY_DIR/_ListIterators.dart';
87 part '$AUXILIARY_DIR/dart2js_Conversions.dart'; 88 part '$AUXILIARY_DIR/dart2js_Conversions.dart';
88 part '$AUXILIARY_DIR/dart2js_CustomElementSupport.dart'; 89 part '$AUXILIARY_DIR/dart2js_CustomElementSupport.dart';
89 part '$AUXILIARY_DIR/dart2js_DOMImplementation.dart'; 90 part '$AUXILIARY_DIR/dart2js_DOMImplementation.dart';
90 part '$AUXILIARY_DIR/dart2js_KeyEvent.dart'; 91 part '$AUXILIARY_DIR/dart2js_KeyEvent.dart';
91 part '$AUXILIARY_DIR/dart2js_Platform.dart'; 92 part '$AUXILIARY_DIR/dart2js_Platform.dart';
92 part '$AUXILIARY_DIR/dart2js_WrappedEvent.dart';
93 part '$AUXILIARY_DIR/shared_html.dart'; 93 part '$AUXILIARY_DIR/shared_html.dart';
94 part '$AUXILIARY_DIR/Validators.dart'; 94 part '$AUXILIARY_DIR/Validators.dart';
95 95
96 96
97 /** 97 /**
98 * Top-level container for a web page, which is usually a browser tab or window. 98 * Top-level container for a web page, which is usually a browser tab or window.
99 * 99 *
100 * Each web page loaded in the browser has its own [Window], which is a 100 * Each web page loaded in the browser has its own [Window], which is a
101 * container for the web page. 101 * container for the web page.
102 * 102 *
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
136 * Spawn a DOM isolate using the given URI in the same window. 136 * Spawn a DOM isolate using the given URI in the same window.
137 * This isolate is not concurrent. It runs on the browser thread 137 * This isolate is not concurrent. It runs on the browser thread
138 * with full access to the DOM. 138 * with full access to the DOM.
139 * Note: this API is still evolving and may move to dart:isolate. 139 * Note: this API is still evolving and may move to dart:isolate.
140 */ 140 */
141 @Experimental() 141 @Experimental()
142 Future<Isolate> spawnDomUri(Uri uri, List<String> args, message) { 142 Future<Isolate> spawnDomUri(Uri uri, List<String> args, message) {
143 // TODO(17738): Implement this. 143 // TODO(17738): Implement this.
144 throw new UnimplementedError(); 144 throw new UnimplementedError();
145 } 145 }
OLDNEW
« no previous file with comments | « tools/dom/src/dartium_WrappedEvent.dart ('k') | tools/dom/templates/html/dartium/html_dartium.darttemplate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698