| 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 10367 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 10378 void setElements(Object array, [int offset]); | 10378 void setElements(Object array, [int offset]); |
| 10379 | 10379 |
| 10380 Uint8Array subarray(int start, [int end]); | 10380 Uint8Array subarray(int start, [int end]); |
| 10381 } | 10381 } |
| 10382 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 10382 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 10383 // for details. All rights reserved. Use of this source code is governed by a | 10383 // for details. All rights reserved. Use of this source code is governed by a |
| 10384 // BSD-style license that can be found in the LICENSE file. | 10384 // BSD-style license that can be found in the LICENSE file. |
| 10385 | 10385 |
| 10386 // WARNING: Do not edit - generated code. | 10386 // WARNING: Do not edit - generated code. |
| 10387 | 10387 |
| 10388 interface Uint8ClampedArray extends Uint8Array, List<int>, ArrayBufferView defau
lt _TypedArrayFactoryProvider { | 10388 interface Uint8ClampedArray extends Uint8Array default _TypedArrayFactoryProvide
r { |
| 10389 | 10389 |
| 10390 Uint8ClampedArray(int length); | 10390 Uint8ClampedArray(int length); |
| 10391 | 10391 |
| 10392 Uint8ClampedArray.fromList(List<int> list); | 10392 Uint8ClampedArray.fromList(List<int> list); |
| 10393 | 10393 |
| 10394 Uint8ClampedArray.fromBuffer(ArrayBuffer buffer, [int byteOffset, int length])
; | 10394 Uint8ClampedArray.fromBuffer(ArrayBuffer buffer, [int byteOffset, int length])
; |
| 10395 | 10395 |
| 10396 final int length; | 10396 final int length; |
| 10397 | 10397 |
| 10398 void setElements(Object array, [int offset]); | 10398 void setElements(Object array, [int offset]); |
| (...skipping 2513 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 12912 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 12912 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 12913 // for details. All rights reserved. Use of this source code is governed by a | 12913 // for details. All rights reserved. Use of this source code is governed by a |
| 12914 // BSD-style license that can be found in the LICENSE file. | 12914 // BSD-style license that can be found in the LICENSE file. |
| 12915 | 12915 |
| 12916 Window get window() => _dummy(); | 12916 Window get window() => _dummy(); |
| 12917 | 12917 |
| 12918 // TODO(vsm): Remove when prefixes are supported. | 12918 // TODO(vsm): Remove when prefixes are supported. |
| 12919 Window get dom_window() => _dummy(); | 12919 Window get dom_window() => _dummy(); |
| 12920 | 12920 |
| 12921 Document get document() => _dummy(); | 12921 Document get document() => _dummy(); |
| OLD | NEW |