| OLD | NEW |
| 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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 part '$AUXILIARY_DIR/KeyCode.dart'; | 71 part '$AUXILIARY_DIR/KeyCode.dart'; |
| 72 part '$AUXILIARY_DIR/KeyLocation.dart'; | 72 part '$AUXILIARY_DIR/KeyLocation.dart'; |
| 73 part '$AUXILIARY_DIR/KeyName.dart'; | 73 part '$AUXILIARY_DIR/KeyName.dart'; |
| 74 part '$AUXILIARY_DIR/KeyboardEventStream.dart'; | 74 part '$AUXILIARY_DIR/KeyboardEventStream.dart'; |
| 75 part '$AUXILIARY_DIR/NodeValidatorBuilder.dart'; | 75 part '$AUXILIARY_DIR/NodeValidatorBuilder.dart'; |
| 76 part '$AUXILIARY_DIR/ReadyState.dart'; | 76 part '$AUXILIARY_DIR/ReadyState.dart'; |
| 77 part '$AUXILIARY_DIR/Validators.dart'; | 77 part '$AUXILIARY_DIR/Validators.dart'; |
| 78 part '$AUXILIARY_DIR/WrappedList.dart'; | 78 part '$AUXILIARY_DIR/WrappedList.dart'; |
| 79 part '$AUXILIARY_DIR/_HttpRequestUtils.dart'; | 79 part '$AUXILIARY_DIR/_HttpRequestUtils.dart'; |
| 80 part '$AUXILIARY_DIR/_ListIterators.dart'; | 80 part '$AUXILIARY_DIR/_ListIterators.dart'; |
| 81 part '$AUXILIARY_DIR/dartium_CustomElementSupport.dart'; | |
| 82 part '$AUXILIARY_DIR/dartium_KeyEvent.dart'; | 81 part '$AUXILIARY_DIR/dartium_KeyEvent.dart'; |
| 83 part '$AUXILIARY_DIR/dartium_Platform.dart'; | 82 part '$AUXILIARY_DIR/dartium_Platform.dart'; |
| 84 part '$AUXILIARY_DIR/shared_html.dart'; | 83 part '$AUXILIARY_DIR/shared_html.dart'; |
| 85 | 84 |
| 86 part '$AUXILIARY_DIR/native_DOMImplementation.dart'; | 85 part '$AUXILIARY_DIR/native_DOMImplementation.dart'; |
| 87 | 86 |
| 88 Window _window; | 87 Window _window; |
| 89 | 88 |
| 90 /** | 89 /** |
| 91 * Top-level container for a web page, which is usually a browser tab or window. | 90 * Top-level container for a web page, which is usually a browser tab or window. |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 124 /** | 123 /** |
| 125 * Spawn a DOM isolate using the given URI in the same window. | 124 * Spawn a DOM isolate using the given URI in the same window. |
| 126 * This isolate is not concurrent. It runs on the browser thread | 125 * This isolate is not concurrent. It runs on the browser thread |
| 127 * with full access to the DOM. | 126 * with full access to the DOM. |
| 128 * Note: this API is still evolving and may move to dart:isolate. | 127 * Note: this API is still evolving and may move to dart:isolate. |
| 129 */ | 128 */ |
| 130 @Experimental() | 129 @Experimental() |
| 131 Future<Isolate> spawnDomUri(Uri uri, List<String> args, message) { | 130 Future<Isolate> spawnDomUri(Uri uri, List<String> args, message) { |
| 132 // TODO(17738): Plumb arguments and return value through. | 131 // TODO(17738): Plumb arguments and return value through. |
| 133 return _Utils.spawnDomUri(uri.toString()); | 132 return _Utils.spawnDomUri(uri.toString()); |
| 134 } | 133 } |
| OLD | NEW |