| OLD | NEW |
| 1 #library('dom'); | 1 #library('dom'); |
| 2 | 2 |
| 3 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 3 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 4 // for details. All rights reserved. Use of this source code is governed by a | 4 // for details. All rights reserved. Use of this source code is governed by a |
| 5 // BSD-style license that can be found in the LICENSE file. | 5 // BSD-style license that can be found in the LICENSE file. |
| 6 | 6 |
| 7 // DO NOT EDIT | 7 // DO NOT EDIT |
| 8 // Auto-generated Dart DOM library with no implementation. | 8 // Auto-generated Dart DOM library with no implementation. |
| 9 | 9 |
| 10 | 10 |
| (...skipping 1689 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1700 } | 1700 } |
| 1701 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1701 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 1702 // for details. All rights reserved. Use of this source code is governed by a | 1702 // for details. All rights reserved. Use of this source code is governed by a |
| 1703 // BSD-style license that can be found in the LICENSE file. | 1703 // BSD-style license that can be found in the LICENSE file. |
| 1704 | 1704 |
| 1705 // WARNING: Do not edit - generated code. | 1705 // WARNING: Do not edit - generated code. |
| 1706 | 1706 |
| 1707 interface DOMURL default _DOMURLFactoryProvider { | 1707 interface DOMURL default _DOMURLFactoryProvider { |
| 1708 | 1708 |
| 1709 DOMURL(); | 1709 DOMURL(); |
| 1710 | |
| 1711 String createObjectURL(blob_OR_stream); | |
| 1712 | |
| 1713 void revokeObjectURL(String url); | |
| 1714 } | 1710 } |
| 1715 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1711 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 1716 // for details. All rights reserved. Use of this source code is governed by a | 1712 // for details. All rights reserved. Use of this source code is governed by a |
| 1717 // BSD-style license that can be found in the LICENSE file. | 1713 // BSD-style license that can be found in the LICENSE file. |
| 1718 | 1714 |
| 1719 // WARNING: Do not edit - generated code. | 1715 // WARNING: Do not edit - generated code. |
| 1720 | 1716 |
| 1721 interface Window extends EventTarget { | 1717 interface Window extends EventTarget { |
| 1722 | 1718 |
| 1723 final DOMApplicationCache applicationCache; | 1719 final DOMApplicationCache applicationCache; |
| (...skipping 11213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 12937 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 12933 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 12938 // for details. All rights reserved. Use of this source code is governed by a | 12934 // for details. All rights reserved. Use of this source code is governed by a |
| 12939 // BSD-style license that can be found in the LICENSE file. | 12935 // BSD-style license that can be found in the LICENSE file. |
| 12940 | 12936 |
| 12941 Window get window() => _dummy(); | 12937 Window get window() => _dummy(); |
| 12942 | 12938 |
| 12943 // TODO(vsm): Remove when prefixes are supported. | 12939 // TODO(vsm): Remove when prefixes are supported. |
| 12944 Window get dom_window() => _dummy(); | 12940 Window get dom_window() => _dummy(); |
| 12945 | 12941 |
| 12946 Document get document() => _dummy(); | 12942 Document get document() => _dummy(); |
| OLD | NEW |