| Index: client/html/generated/html/dartium/Uint8Array.dart | 
| diff --git a/client/html/generated/html/dartium/Uint8Array.dart b/client/html/generated/html/dartium/Uint8Array.dart | 
| deleted file mode 100644 | 
| index a73bb11bbe2ed72d4bc21568239cfa88388c36db..0000000000000000000000000000000000000000 | 
| --- a/client/html/generated/html/dartium/Uint8Array.dart | 
| +++ /dev/null | 
| @@ -1,116 +0,0 @@ | 
| - | 
| -class _Uint8ArrayImpl extends _ArrayBufferViewImpl implements Uint8Array, List<int> { | 
| -  _Uint8ArrayImpl._wrap(ptr) : super._wrap(ptr); | 
| - | 
| -  int get length() => _wrap(_ptr.length); | 
| - | 
| -  int operator[](int index) => _wrap(_ptr[index]); | 
| - | 
| - | 
| -  void operator[]=(int index, int value) { | 
| -    throw new UnsupportedOperationException("Cannot assign element of immutable List."); | 
| -  } | 
| - | 
| -  void add(int value) { | 
| -    throw new UnsupportedOperationException("Cannot add to immutable List."); | 
| -  } | 
| - | 
| -  void addLast(int value) { | 
| -    throw new UnsupportedOperationException("Cannot add to immutable List."); | 
| -  } | 
| - | 
| -  void addAll(Collection<int> collection) { | 
| -    throw new UnsupportedOperationException("Cannot add to immutable List."); | 
| -  } | 
| - | 
| -  void sort(int compare(int a, int b)) { | 
| -    throw new UnsupportedOperationException("Cannot sort immutable List."); | 
| -  } | 
| - | 
| -  void copyFrom(List<Object> src, int srcStart, int dstStart, int count) { | 
| -    throw new UnsupportedOperationException("This object is immutable."); | 
| -  } | 
| - | 
| -  int indexOf(int element, [int start = 0]) { | 
| -    return _Lists.indexOf(this, element, start, this.length); | 
| -  } | 
| - | 
| -  int lastIndexOf(int element, [int start = null]) { | 
| -    if (start === null) start = length - 1; | 
| -    return _Lists.lastIndexOf(this, element, start); | 
| -  } | 
| - | 
| -  int clear() { | 
| -    throw new UnsupportedOperationException("Cannot clear immutable List."); | 
| -  } | 
| - | 
| -  int removeLast() { | 
| -    throw new UnsupportedOperationException("Cannot removeLast on immutable List."); | 
| -  } | 
| - | 
| -  int last() { | 
| -    return this[length - 1]; | 
| -  } | 
| - | 
| -  void forEach(void f(int element)) { | 
| -    _Collections.forEach(this, f); | 
| -  } | 
| - | 
| -  Collection map(f(int element)) { | 
| -    return _Collections.map(this, [], f); | 
| -  } | 
| - | 
| -  Collection<int> filter(bool f(int element)) { | 
| -    return _Collections.filter(this, new List<int>(), f); | 
| -  } | 
| - | 
| -  bool every(bool f(int element)) { | 
| -    return _Collections.every(this, f); | 
| -  } | 
| - | 
| -  bool some(bool f(int element)) { | 
| -    return _Collections.some(this, f); | 
| -  } | 
| - | 
| -  void setRange(int start, int length, List<int> from, [int startFrom]) { | 
| -    throw new UnsupportedOperationException("Cannot setRange on immutable List."); | 
| -  } | 
| - | 
| -  void removeRange(int start, int length) { | 
| -    throw new UnsupportedOperationException("Cannot removeRange on immutable List."); | 
| -  } | 
| - | 
| -  void insertRange(int start, int length, [int initialValue]) { | 
| -    throw new UnsupportedOperationException("Cannot insertRange on immutable List."); | 
| -  } | 
| - | 
| -  List<int> getRange(int start, int length) { | 
| -    throw new NotImplementedException(); | 
| -  } | 
| - | 
| -  bool isEmpty() { | 
| -    return length == 0; | 
| -  } | 
| - | 
| -  Iterator<int> iterator() { | 
| -    return new _FixedSizeListIterator<int>(this); | 
| -  } | 
| - | 
| -  void setElements(Object array, [int offset = null]) { | 
| -    if (offset === null) { | 
| -      _ptr.setElements(_unwrap(array)); | 
| -      return; | 
| -    } else { | 
| -      _ptr.setElements(_unwrap(array), _unwrap(offset)); | 
| -      return; | 
| -    } | 
| -  } | 
| - | 
| -  Uint8Array subarray(int start, [int end = null]) { | 
| -    if (end === null) { | 
| -      return _wrap(_ptr.subarray(_unwrap(start))); | 
| -    } else { | 
| -      return _wrap(_ptr.subarray(_unwrap(start), _unwrap(end))); | 
| -    } | 
| -  } | 
| -} | 
|  |