| Index: lib/html/dartium/html_dartium.dart
|
| diff --git a/lib/html/dartium/html_dartium.dart b/lib/html/dartium/html_dartium.dart
|
| index dfe5957191db7b9f31f649ace41ebe4a3fed4650..85241e6662282f475213626a40663630ddb1208c 100644
|
| --- a/lib/html/dartium/html_dartium.dart
|
| +++ b/lib/html/dartium/html_dartium.dart
|
| @@ -39018,6 +39018,19 @@ interface WheelEvent extends MouseEvent {
|
| interface Window extends EventTarget {
|
|
|
| /**
|
| + * Register a [port] on this window under the given [name]. This
|
| + * port may be retrieved by any isolate (or JavaScript script)
|
| + * running in this window.
|
| + */
|
| + void registerPort(String name, SendPortSync port);
|
| +
|
| + /**
|
| + * Lookup a port by its [name]. Return null if no port is
|
| + * registered under [name].
|
| + */
|
| + SendPortSync lookupPort(String name);
|
| +
|
| + /**
|
| * Executes a [callback] after the next batch of browser layout measurements
|
| * has completed or would have completed if any browser layout measurements
|
| * had been scheduled.
|
|
|