Chromium Code Reviews| 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("dart:html"); | 8 #library("dart:html"); |
| 9 | 9 |
| 10 #import("dart:isolate"); | 10 #import("dart:isolate"); |
| (...skipping 10 matching lines...) Expand all Loading... | |
| 21 #source('$AUXILIARY_DIR/_Collections.dart'); | 21 #source('$AUXILIARY_DIR/_Collections.dart'); |
| 22 #source('$AUXILIARY_DIR/_HttpRequestUtils.dart'); | 22 #source('$AUXILIARY_DIR/_HttpRequestUtils.dart'); |
| 23 #source('$AUXILIARY_DIR/../../html/src/shared_FactoryProviders.dart'); | 23 #source('$AUXILIARY_DIR/../../html/src/shared_FactoryProviders.dart'); |
| 24 #source('$AUXILIARY_DIR/../../html/src/dartium_FactoryProviders.dart'); | 24 #source('$AUXILIARY_DIR/../../html/src/dartium_FactoryProviders.dart'); |
| 25 #source('$AUXILIARY_DIR/../../html/src/Isolates.dart'); | 25 #source('$AUXILIARY_DIR/../../html/src/Isolates.dart'); |
| 26 #source('$AUXILIARY_DIR/../../html/src/Measurement.dart'); | 26 #source('$AUXILIARY_DIR/../../html/src/Measurement.dart'); |
| 27 #source('$AUXILIARY_DIR/../../html/src/Device.dart'); | 27 #source('$AUXILIARY_DIR/../../html/src/Device.dart'); |
| 28 #source('$AUXILIARY_DIR/../../html/src/_Testing.dart'); | 28 #source('$AUXILIARY_DIR/../../html/src/_Testing.dart'); |
| 29 #source('$AUXILIARY_DIR/_ListIterators.dart'); | 29 #source('$AUXILIARY_DIR/_ListIterators.dart'); |
| 30 #source('$AUXILIARY_DIR/_Lists.dart'); | 30 #source('$AUXILIARY_DIR/_Lists.dart'); |
| 31 #source('$AUXILIARY_DIR/../../isolate/serialization.dart'); | 31 #source('$AUXILIARY_DIR/../../js_isolate_impl/isolate.dart"); |
|
Anton Muhin
2012/08/21 17:30:45
please, terminating single quote.
| |
| 32 | 32 |
| 33 #source('$AUXILIARY_DIR/native_DOMPublic.dart'); | 33 #source('$AUXILIARY_DIR/native_DOMPublic.dart'); |
| 34 #source('$AUXILIARY_DIR/native_DOMImplementation.dart'); | 34 #source('$AUXILIARY_DIR/native_DOMImplementation.dart'); |
| 35 | 35 |
| 36 Window __window; | 36 Window __window; |
| 37 | 37 |
| 38 Window get window() { | 38 Window get window() { |
| 39 if (__window !== null) { | 39 if (__window !== null) { |
| 40 return __window; | 40 return __window; |
| 41 } | 41 } |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 77 _callPortLastResult = JSON.parse(event.data); | 77 _callPortLastResult = JSON.parse(event.data); |
| 78 }, false); | 78 }, false); |
| 79 _callPortInitialized = true; | 79 _callPortInitialized = true; |
| 80 } | 80 } |
| 81 assert(_callPortLastResult == null); | 81 assert(_callPortLastResult == null); |
| 82 _dispatchEvent('js-sync-message', {'id': id, 'message': message}); | 82 _dispatchEvent('js-sync-message', {'id': id, 'message': message}); |
| 83 var result = _callPortLastResult; | 83 var result = _callPortLastResult; |
| 84 _callPortLastResult = null; | 84 _callPortLastResult = null; |
| 85 return result; | 85 return result; |
| 86 } | 86 } |
| OLD | NEW |