Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(452)

Unified Diff: client/html/generated/src/wrapping/_MediaListWrappingImplementation.dart

Issue 9537001: Generate dart:html bindings for Dartium as well as Frog. All unittests now pass (or are disabled fo… (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: client/html/generated/src/wrapping/_MediaListWrappingImplementation.dart
diff --git a/client/html/generated/src/wrapping/_MediaListWrappingImplementation.dart b/client/html/generated/src/wrapping/_MediaListWrappingImplementation.dart
deleted file mode 100644
index f7c1a2e7c14b5336c9c6fc8cf7ff704157a79a15..0000000000000000000000000000000000000000
--- a/client/html/generated/src/wrapping/_MediaListWrappingImplementation.dart
+++ /dev/null
@@ -1,122 +0,0 @@
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
-// for details. All rights reserved. Use of this source code is governed by a
-// BSD-style license that can be found in the LICENSE file.
-
-// WARNING: Do not edit - generated code.
-
-class MediaListWrappingImplementation extends DOMWrapperBase implements MediaList {
- MediaListWrappingImplementation._wrap(ptr) : super._wrap(ptr) {}
-
- int get length() { return _ptr.length; }
-
- String get mediaText() { return _ptr.mediaText; }
-
- void set mediaText(String value) { _ptr.mediaText = value; }
-
- String operator[](int index) {
- return _ptr[index];
- }
-
- void operator[]=(int index, String value) {
- _ptr[index] = value;
- }
-
- void add(String value) {
- throw new UnsupportedOperationException("Cannot add to immutable List.");
- }
-
- void addLast(String value) {
- throw new UnsupportedOperationException("Cannot add to immutable List.");
- }
-
- void addAll(Collection<String> collection) {
- throw new UnsupportedOperationException("Cannot add to immutable List.");
- }
-
- void sort(int compare(String a, String 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(String element, [int start = 0]) {
- return Lists.indexOf(this, element, start, this.length);
- }
-
- int lastIndexOf(String 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.");
- }
-
- String removeLast() {
- throw new UnsupportedOperationException("Cannot removeLast on immutable List.");
- }
-
- String last() {
- return this[length - 1];
- }
-
- void forEach(void f(String element)) {
- _Collections.forEach(this, f);
- }
-
- Collection map(f(String element)) {
- return _Collections.map(this, [], f);
- }
-
- Collection<String> filter(bool f(String element)) {
- return _Collections.filter(this, new List<String>(), f);
- }
-
- bool every(bool f(String element)) {
- return _Collections.every(this, f);
- }
-
- bool some(bool f(String element)) {
- return _Collections.some(this, f);
- }
-
- void setRange(int start, int length, List<String> 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, [String initialValue]) {
- throw new UnsupportedOperationException("Cannot insertRange on immutable List.");
- }
-
- List<String> getRange(int start, int length) {
- throw new NotImplementedException();
- }
-
- bool isEmpty() {
- return length == 0;
- }
-
- Iterator<String> iterator() {
- return new _FixedSizeListIterator<String>(this);
- }
-
- void appendMedium(String newMedium) {
- _ptr.appendMedium(newMedium);
- return;
- }
-
- void deleteMedium(String oldMedium) {
- _ptr.deleteMedium(oldMedium);
- return;
- }
-
- String item(int index) {
- return _ptr.item(index);
- }
-}

Powered by Google App Engine
This is Rietveld 408576698