Chromium Code Reviews| Index: runtime/lib/typed_data.dart |
| diff --git a/runtime/lib/typed_data.dart b/runtime/lib/typed_data.dart |
| index 64e43d425dd95f30a3c41eda7dd0956d4c65ed42..195e516ef3d2617e4879c337fdb25cc79b513d2d 100644 |
| --- a/runtime/lib/typed_data.dart |
| +++ b/runtime/lib/typed_data.dart |
| @@ -3000,6 +3000,10 @@ class _ByteDataView implements ByteData { |
| return _offset; |
| } |
| + int get elementSizeInBytes { |
|
Ivan Posva
2013/11/05 19:15:28
I don't think this belongs here.
Ivan Posva
2013/11/05 19:18:13
Never mind, mixed up ByteBuffer and ByteData.
|
| + return 1; |
| + } |
| + |
| // Method(s) implementing ByteData interface. |
| int getInt8(int byteOffset) { |