| 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 |
| 11 | 11 |
| 12 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 12 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 13 // for details. All rights reserved. Use of this source code is governed by a | 13 // for details. All rights reserved. Use of this source code is governed by a |
| 14 // BSD-style license that can be found in the LICENSE file. | 14 // BSD-style license that can be found in the LICENSE file. |
| 15 | 15 |
| 16 class _BlobFactoryProvider { | |
| 17 factory Blob(List blobParts, [String type = null, String endings = null]) => _
dummy(); | |
| 18 } | |
| 19 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | |
| 20 // for details. All rights reserved. Use of this source code is governed by a | |
| 21 // BSD-style license that can be found in the LICENSE file. | |
| 22 | |
| 23 class _DOMParserFactoryProvider { | 16 class _DOMParserFactoryProvider { |
| 24 factory DOMParser() => _dummy(); | 17 factory DOMParser() => _dummy(); |
| 25 } | 18 } |
| 26 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 19 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 27 // for details. All rights reserved. Use of this source code is governed by a | 20 // for details. All rights reserved. Use of this source code is governed by a |
| 28 // BSD-style license that can be found in the LICENSE file. | 21 // BSD-style license that can be found in the LICENSE file. |
| 29 | 22 |
| 30 class _DOMURLFactoryProvider { | 23 class _DOMURLFactoryProvider { |
| 31 factory DOMURL() => _dummy(); | 24 factory DOMURL() => _dummy(); |
| 32 } | 25 } |
| (...skipping 610 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 643 int type; | 636 int type; |
| 644 | 637 |
| 645 void getFrequencyResponse(Float32Array frequencyHz, Float32Array magResponse,
Float32Array phaseResponse); | 638 void getFrequencyResponse(Float32Array frequencyHz, Float32Array magResponse,
Float32Array phaseResponse); |
| 646 } | 639 } |
| 647 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 640 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 648 // for details. All rights reserved. Use of this source code is governed by a | 641 // for details. All rights reserved. Use of this source code is governed by a |
| 649 // BSD-style license that can be found in the LICENSE file. | 642 // BSD-style license that can be found in the LICENSE file. |
| 650 | 643 |
| 651 // WARNING: Do not edit - generated code. | 644 // WARNING: Do not edit - generated code. |
| 652 | 645 |
| 653 interface Blob default _BlobFactoryProvider { | 646 interface Blob { |
| 654 | |
| 655 Blob(List blobParts, [String type, String endings]); | |
| 656 | 647 |
| 657 final int size; | 648 final int size; |
| 658 | 649 |
| 659 final String type; | 650 final String type; |
| 660 | 651 |
| 661 Blob slice([int start, int end, String contentType]); | 652 Blob slice([int start, int end, String contentType]); |
| 662 | 653 |
| 663 Blob webkitSlice([int start, int end, String contentType]); | 654 Blob webkitSlice([int start, int end, String contentType]); |
| 664 } | 655 } |
| 665 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 656 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| (...skipping 12290 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 12956 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 12947 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 12957 // for details. All rights reserved. Use of this source code is governed by a | 12948 // for details. All rights reserved. Use of this source code is governed by a |
| 12958 // BSD-style license that can be found in the LICENSE file. | 12949 // BSD-style license that can be found in the LICENSE file. |
| 12959 | 12950 |
| 12960 Window get window() => _dummy(); | 12951 Window get window() => _dummy(); |
| 12961 | 12952 |
| 12962 // TODO(vsm): Remove when prefixes are supported. | 12953 // TODO(vsm): Remove when prefixes are supported. |
| 12963 Window get dom_window() => _dummy(); | 12954 Window get dom_window() => _dummy(); |
| 12964 | 12955 |
| 12965 Document get document() => _dummy(); | 12956 Document get document() => _dummy(); |
| OLD | NEW |