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