| 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 - 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 import 'dart:typed_data'; | 44 import 'dart:typed_data'; |
| 45 // Not actually used, but imported since dart:html can generate these objects. | 45 // Not actually used, but imported since dart:html can generate these objects. |
| 46 import 'dart:svg' as svg; | 46 import 'dart:svg' as svg; |
| 47 import 'dart:svg' show Matrix; | 47 import 'dart:svg' show Matrix; |
| 48 import 'dart:svg' show SvgSvgElement; | 48 import 'dart:svg' show SvgSvgElement; |
| 49 import 'dart:web_audio' as web_audio; | 49 import 'dart:web_audio' as web_audio; |
| 50 import 'dart:web_gl' as gl; | 50 import 'dart:web_gl' as gl; |
| 51 import 'dart:web_sql'; | 51 import 'dart:web_sql'; |
| 52 import 'dart:_js_helper' show | 52 import 'dart:_js_helper' show |
| 53 convertDartClosureToJS, Creates, JavaScriptIndexingBehavior, | 53 convertDartClosureToJS, Creates, JavaScriptIndexingBehavior, |
| 54 JSName, Null, Returns, | 54 JSName, Native, Null, Returns, |
| 55 findDispatchTagForInterceptorClass, setNativeSubclassDispatchRecord, | 55 findDispatchTagForInterceptorClass, setNativeSubclassDispatchRecord, |
| 56 makeLeafDispatchRecord; | 56 makeLeafDispatchRecord; |
| 57 import 'dart:_interceptors' show | 57 import 'dart:_interceptors' show |
| 58 Interceptor, JSExtendableArray, findInterceptorConstructorForType, | 58 Interceptor, JSExtendableArray, findInterceptorConstructorForType, |
| 59 findConstructorForNativeSubclassType, getNativeInterceptor, | 59 findConstructorForNativeSubclassType, getNativeInterceptor, |
| 60 setDispatchProperty; | 60 setDispatchProperty; |
| 61 import 'dart:_isolate_helper' show IsolateNatives; | 61 import 'dart:_isolate_helper' show IsolateNatives; |
| 62 import 'dart:_foreign_helper' show JS, JS_INTERCEPTOR_CONSTANT; | 62 import 'dart:_foreign_helper' show JS, JS_INTERCEPTOR_CONSTANT; |
| 63 | 63 |
| 64 export 'dart:math' show Rectangle, Point; | 64 export 'dart:math' show Rectangle, Point; |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 } |
| OLD | NEW |