| 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 library html; | 8 library html; |
| 9 | 9 |
| 10 import 'dart:async'; | 10 import 'dart:async'; |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 part '$AUXILIARY_DIR/ReadyState.dart'; | 33 part '$AUXILIARY_DIR/ReadyState.dart'; |
| 34 part '$AUXILIARY_DIR/Timer.dart'; | 34 part '$AUXILIARY_DIR/Timer.dart'; |
| 35 part '$AUXILIARY_DIR/_HttpRequestUtils.dart'; | 35 part '$AUXILIARY_DIR/_HttpRequestUtils.dart'; |
| 36 part '$AUXILIARY_DIR/shared_FactoryProviders.dart'; | 36 part '$AUXILIARY_DIR/shared_FactoryProviders.dart'; |
| 37 part '$AUXILIARY_DIR/dartium_KeyEvent.dart'; | 37 part '$AUXILIARY_DIR/dartium_KeyEvent.dart'; |
| 38 part '$AUXILIARY_DIR/dartium_FactoryProviders.dart'; | 38 part '$AUXILIARY_DIR/dartium_FactoryProviders.dart'; |
| 39 part '$AUXILIARY_DIR/Device.dart'; | 39 part '$AUXILIARY_DIR/Device.dart'; |
| 40 part '$AUXILIARY_DIR/Isolates.dart'; | 40 part '$AUXILIARY_DIR/Isolates.dart'; |
| 41 part '$AUXILIARY_DIR/Microtask.dart'; | 41 part '$AUXILIARY_DIR/Microtask.dart'; |
| 42 part '$AUXILIARY_DIR/Serialization.dart'; | 42 part '$AUXILIARY_DIR/Serialization.dart'; |
| 43 part '$AUXILIARY_DIR/_Testing.dart'; | |
| 44 part '$AUXILIARY_DIR/_ListIterators.dart'; | 43 part '$AUXILIARY_DIR/_ListIterators.dart'; |
| 45 | 44 |
| 46 part '$AUXILIARY_DIR/native_DOMPublic.dart'; | 45 part '$AUXILIARY_DIR/native_DOMPublic.dart'; |
| 47 part '$AUXILIARY_DIR/native_DOMImplementation.dart'; | 46 part '$AUXILIARY_DIR/native_DOMImplementation.dart'; |
| 48 | 47 |
| 49 Window _window; | 48 Window _window; |
| 50 | 49 |
| 51 Window get window { | 50 Window get window { |
| 52 if (_window != null) { | 51 if (_window != null) { |
| 53 return _window; | 52 return _window; |
| (...skipping 27 matching lines...) Expand all Loading... |
| 81 _callPortLastResult = json.parse(_getPortSyncEventData(event)); | 80 _callPortLastResult = json.parse(_getPortSyncEventData(event)); |
| 82 }, false); | 81 }, false); |
| 83 _callPortInitialized = true; | 82 _callPortInitialized = true; |
| 84 } | 83 } |
| 85 assert(_callPortLastResult == null); | 84 assert(_callPortLastResult == null); |
| 86 _dispatchEvent('js-sync-message', {'id': id, 'message': message}); | 85 _dispatchEvent('js-sync-message', {'id': id, 'message': message}); |
| 87 var result = _callPortLastResult; | 86 var result = _callPortLastResult; |
| 88 _callPortLastResult = null; | 87 _callPortLastResult = null; |
| 89 return result; | 88 return result; |
| 90 } | 89 } |
| OLD | NEW |