| OLD | NEW |
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, 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 // This API is exploratory. | 5 // This API is exploratory. |
| 6 spawnDomIsolateImpl(Window targetWindow, String entryPoint) { | 6 spawnDomIsolate(Window targetWindow, String entryPoint) { |
| 7 if (targetWindow is! DOMWindowImplementation && targetWindow is! DOMWindowCros
sFrameImplementation) { | 7 if (targetWindow is! DOMWindowImplementation && targetWindow is! DOMWindowCros
sFrameImplementation) { |
| 8 throw 'Bad window argument: $targetWindow'; | 8 throw 'Bad window argument: $targetWindow'; |
| 9 } | 9 } |
| 10 final result = new Completer<SendPort>(); | 10 final result = new Completer<SendPort>(); |
| 11 final port = Utils.spawnDomIsolate(targetWindow, entryPoint); | 11 final port = Utils.spawnDomIsolate(targetWindow, entryPoint); |
| 12 window.setTimeout(() { result.complete(port); }, 0); | 12 window.setTimeout(() { result.complete(port); }, 0); |
| 13 return result.future; | 13 return result.future; |
| 14 } | 14 } |
| 15 | 15 |
| 16 // layoutTestController implementation. | 16 // layoutTestController implementation. |
| (...skipping 10 matching lines...) Expand all Loading... |
| 27 class LayoutTestController { | 27 class LayoutTestController { |
| 28 final NPObject _npObject; | 28 final NPObject _npObject; |
| 29 | 29 |
| 30 LayoutTestController._(this._npObject); | 30 LayoutTestController._(this._npObject); |
| 31 | 31 |
| 32 dumpAsText() => _npObject.invoke('dumpAsText'); | 32 dumpAsText() => _npObject.invoke('dumpAsText'); |
| 33 notifyDone() => _npObject.invoke('notifyDone'); | 33 notifyDone() => _npObject.invoke('notifyDone'); |
| 34 setCanOpenWindows() => _npObject.invoke('setCanOpenWindows'); | 34 setCanOpenWindows() => _npObject.invoke('setCanOpenWindows'); |
| 35 waitUntilDone() => _npObject.invoke('waitUntilDone'); | 35 waitUntilDone() => _npObject.invoke('waitUntilDone'); |
| 36 } | 36 } |
| OLD | NEW |