Chromium Code Reviews| Index: runtime/lib/typed_data.dart |
| diff --git a/runtime/lib/typed_data.dart b/runtime/lib/typed_data.dart |
| index 9e2a114e097ba57f770181caeb47b2946c65a1e7..62ca19787daec82bac5e49ae4281ea2b7128b40e 100644 |
| --- a/runtime/lib/typed_data.dart |
| +++ b/runtime/lib/typed_data.dart |
| @@ -695,6 +695,8 @@ class _Uint8Array extends _TypedList implements Uint8List { |
| return _new(length); |
| } |
| + int _getUint8(int offsetInBytes) native "TypedData_GetUint8"; |
|
Cutch
2013/10/07 23:49:50
I have to override _getUint8 in _Uint8Array and _E
|
| + |
| static _Uint8Array _new(int length) native "TypedData_Uint8Array_new"; |
| } |
| @@ -1405,6 +1407,8 @@ class _ExternalUint8Array extends _TypedList implements Uint8List { |
| return new Uint8List(length); |
| } |
| + int _getUint8(int offsetInBytes) native "TypedData_GetUint8"; |
| + |
| static _ExternalUint8Array _new(int length) native |
| "ExternalTypedData_Uint8Array_new"; |
| } |