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 /// The Dart HTML library. | 8 /// The Dart HTML library. |
9 library dart.dom.html; | 9 library dart.dom.html; |
10 | 10 |
(...skipping 15 matching lines...) Expand all Loading... |
26 import 'dart:web_audio' as web_audio; | 26 import 'dart:web_audio' as web_audio; |
27 | 27 |
28 $!GENERATED_DART_FILES | 28 $!GENERATED_DART_FILES |
29 | 29 |
30 part '$AUXILIARY_DIR/AttributeMap.dart'; | 30 part '$AUXILIARY_DIR/AttributeMap.dart'; |
31 part '$AUXILIARY_DIR/CanvasImageSource.dart'; | 31 part '$AUXILIARY_DIR/CanvasImageSource.dart'; |
32 part '$AUXILIARY_DIR/CrossFrameTypes.dart'; | 32 part '$AUXILIARY_DIR/CrossFrameTypes.dart'; |
33 part '$AUXILIARY_DIR/CssClassSet.dart'; | 33 part '$AUXILIARY_DIR/CssClassSet.dart'; |
34 part '$AUXILIARY_DIR/EventListener.dart'; | 34 part '$AUXILIARY_DIR/EventListener.dart'; |
35 part '$AUXILIARY_DIR/EventStreamProvider.dart'; | 35 part '$AUXILIARY_DIR/EventStreamProvider.dart'; |
| 36 part '$AUXILIARY_DIR/Html5NodeValidator.dart'; |
36 part '$AUXILIARY_DIR/ImmutableListMixin.dart'; | 37 part '$AUXILIARY_DIR/ImmutableListMixin.dart'; |
37 part '$AUXILIARY_DIR/KeyboardEventStream.dart'; | 38 part '$AUXILIARY_DIR/Isolates.dart'; |
38 part '$AUXILIARY_DIR/KeyCode.dart'; | 39 part '$AUXILIARY_DIR/KeyCode.dart'; |
39 part '$AUXILIARY_DIR/KeyLocation.dart'; | 40 part '$AUXILIARY_DIR/KeyLocation.dart'; |
40 part '$AUXILIARY_DIR/KeyName.dart'; | 41 part '$AUXILIARY_DIR/KeyName.dart'; |
| 42 part '$AUXILIARY_DIR/KeyboardEventStream.dart'; |
| 43 part '$AUXILIARY_DIR/Microtask.dart'; |
| 44 part '$AUXILIARY_DIR/NodeValidatorBuilder.dart'; |
41 part '$AUXILIARY_DIR/PathObserver.dart'; | 45 part '$AUXILIARY_DIR/PathObserver.dart'; |
42 part '$AUXILIARY_DIR/Point.dart'; | 46 part '$AUXILIARY_DIR/Point.dart'; |
43 part '$AUXILIARY_DIR/ReadyState.dart'; | 47 part '$AUXILIARY_DIR/ReadyState.dart'; |
44 part '$AUXILIARY_DIR/Rectangle.dart'; | 48 part '$AUXILIARY_DIR/Rectangle.dart'; |
| 49 part '$AUXILIARY_DIR/Serialization.dart'; |
45 part '$AUXILIARY_DIR/TemplateBindings.dart'; | 50 part '$AUXILIARY_DIR/TemplateBindings.dart'; |
| 51 part '$AUXILIARY_DIR/Validators.dart'; |
46 part '$AUXILIARY_DIR/WrappedEvent.dart'; | 52 part '$AUXILIARY_DIR/WrappedEvent.dart'; |
47 part '$AUXILIARY_DIR/WrappedList.dart'; | 53 part '$AUXILIARY_DIR/WrappedList.dart'; |
48 part '$AUXILIARY_DIR/_HttpRequestUtils.dart'; | 54 part '$AUXILIARY_DIR/_HttpRequestUtils.dart'; |
| 55 part '$AUXILIARY_DIR/_ListIterators.dart'; |
49 part '$AUXILIARY_DIR/dartium_KeyEvent.dart'; | 56 part '$AUXILIARY_DIR/dartium_KeyEvent.dart'; |
50 part '$AUXILIARY_DIR/dartium_Platform.dart'; | 57 part '$AUXILIARY_DIR/dartium_Platform.dart'; |
51 part '$AUXILIARY_DIR/Isolates.dart'; | |
52 part '$AUXILIARY_DIR/Microtask.dart'; | |
53 part '$AUXILIARY_DIR/Serialization.dart'; | |
54 part '$AUXILIARY_DIR/_ListIterators.dart'; | |
55 | 58 |
56 part '$AUXILIARY_DIR/native_DOMPublic.dart'; | 59 part '$AUXILIARY_DIR/native_DOMPublic.dart'; |
57 part '$AUXILIARY_DIR/native_DOMImplementation.dart'; | 60 part '$AUXILIARY_DIR/native_DOMImplementation.dart'; |
58 | 61 |
59 Window _window; | 62 Window _window; |
60 | 63 |
61 Window get window { | 64 Window get window { |
62 if (_window != null) { | 65 if (_window != null) { |
63 return _window; | 66 return _window; |
64 } | 67 } |
(...skipping 26 matching lines...) Expand all Loading... |
91 _callPortLastResult = json.parse(_getPortSyncEventData(event)); | 94 _callPortLastResult = json.parse(_getPortSyncEventData(event)); |
92 }); | 95 }); |
93 _callPortInitialized = true; | 96 _callPortInitialized = true; |
94 } | 97 } |
95 assert(_callPortLastResult == null); | 98 assert(_callPortLastResult == null); |
96 _dispatchEvent('js-sync-message', {'id': id, 'message': message}); | 99 _dispatchEvent('js-sync-message', {'id': id, 'message': message}); |
97 var result = _callPortLastResult; | 100 var result = _callPortLastResult; |
98 _callPortLastResult = null; | 101 _callPortLastResult = null; |
99 return result; | 102 return result; |
100 } | 103 } |
OLD | NEW |