| 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 // WARNING: Do not edit - generated code. | 5 // WARNING: Do not edit - generated code. |
| 6 | 6 |
| 7 part of html; | 7 part of html; |
| 8 | 8 |
| 9 $!COMMENT | 9 $!COMMENT |
| 10 abstract class $ID$EXTENDS { | 10 abstract class $ID$EXTENDS { |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 */ | 22 */ |
| 23 SendPortSync lookupPort(String name); | 23 SendPortSync lookupPort(String name); |
| 24 | 24 |
| 25 /** | 25 /** |
| 26 * Executes a [callback] after the next batch of browser layout measurements | 26 * Executes a [callback] after the next batch of browser layout measurements |
| 27 * has completed or would have completed if any browser layout measurements | 27 * has completed or would have completed if any browser layout measurements |
| 28 * had been scheduled. | 28 * had been scheduled. |
| 29 */ | 29 */ |
| 30 void requestLayoutFrame(TimeoutHandler callback); | 30 void requestLayoutFrame(TimeoutHandler callback); |
| 31 | 31 |
| 32 /** | |
| 33 * Creates a new object URL for the specified object. The URL will be | |
| 34 * available until revokeObjectUrl is called. | |
| 35 * [object] can be a Blob, MediaStream or MediaSource. | |
| 36 */ | |
| 37 String createObjectUrl(object); | |
| 38 | |
| 39 /** @domName DOMURL.revokeObjectURL */ | |
| 40 void revokeObjectUrl(String objectUrl); | |
| 41 | |
| 42 $!MEMBERS | 32 $!MEMBERS |
| 43 } | 33 } |
| OLD | NEW |