| Index: sdk/lib/html/dart2js/html_dart2js.dart
|
| diff --git a/sdk/lib/html/dart2js/html_dart2js.dart b/sdk/lib/html/dart2js/html_dart2js.dart
|
| index a71303a895a11289d31da1b6f17294b7301ed343..b18f079a9551b67d0572c1fbb6eb32ffe25da48a 100644
|
| --- a/sdk/lib/html/dart2js/html_dart2js.dart
|
| +++ b/sdk/lib/html/dart2js/html_dart2js.dart
|
| @@ -19812,38 +19812,6 @@ class RtcStatsResponse native "*RTCStatsResponse" {
|
| @DocsEditable
|
| List<RtcStatsReport> result() native;
|
| }
|
| -// Copyright (c) 2012, 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.
|
| -
|
| -
|
| -typedef void SqlStatementCallback(SqlTransaction transaction, SqlResultSet resultSet);
|
| -// Copyright (c) 2012, 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.
|
| -
|
| -
|
| -typedef void SqlStatementErrorCallback(SqlTransaction transaction, SqlError error);
|
| -// Copyright (c) 2012, 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.
|
| -
|
| -
|
| -typedef void SqlTransactionCallback(SqlTransaction transaction);
|
| -// Copyright (c) 2012, 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.
|
| -
|
| -
|
| -typedef void SqlTransactionErrorCallback(SqlError error);
|
| // Copyright (c) 2013, 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.
|
| @@ -21008,365 +20976,6 @@ class SpeechRecognitionResult native "*SpeechRecognitionResult" {
|
| // BSD-style license that can be found in the LICENSE file.
|
|
|
|
|
| -@DocsEditable
|
| -@DomName('Database')
|
| -@SupportedBrowser(SupportedBrowser.CHROME)
|
| -@SupportedBrowser(SupportedBrowser.SAFARI)
|
| -@Experimental
|
| -class SqlDatabase native "*Database" {
|
| -
|
| - /// Checks if this type is supported on the current platform.
|
| - static bool get supported => JS('bool', '!!(window.openDatabase)');
|
| -
|
| - @DomName('Database.version')
|
| - @DocsEditable
|
| - final String version;
|
| -
|
| - @DomName('Database.changeVersion')
|
| - @DocsEditable
|
| - void changeVersion(String oldVersion, String newVersion, [SqlTransactionCallback callback, SqlTransactionErrorCallback errorCallback, VoidCallback successCallback]) native;
|
| -
|
| - @DomName('Database.readTransaction')
|
| - @DocsEditable
|
| - void readTransaction(SqlTransactionCallback callback, [SqlTransactionErrorCallback errorCallback, VoidCallback successCallback]) native;
|
| -
|
| - @DomName('Database.transaction')
|
| - @DocsEditable
|
| - void transaction(SqlTransactionCallback callback, [SqlTransactionErrorCallback errorCallback, VoidCallback successCallback]) native;
|
| -}
|
| -// Copyright (c) 2012, 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.
|
| -
|
| -
|
| -@DocsEditable
|
| -@DomName('SQLError')
|
| -class SqlError native "*SQLError" {
|
| -
|
| - static const int CONSTRAINT_ERR = 6;
|
| -
|
| - static const int DATABASE_ERR = 1;
|
| -
|
| - static const int QUOTA_ERR = 4;
|
| -
|
| - static const int SYNTAX_ERR = 5;
|
| -
|
| - static const int TIMEOUT_ERR = 7;
|
| -
|
| - static const int TOO_LARGE_ERR = 3;
|
| -
|
| - static const int UNKNOWN_ERR = 0;
|
| -
|
| - static const int VERSION_ERR = 2;
|
| -
|
| - @DomName('SQLError.code')
|
| - @DocsEditable
|
| - final int code;
|
| -
|
| - @DomName('SQLError.message')
|
| - @DocsEditable
|
| - final String message;
|
| -}
|
| -// Copyright (c) 2012, 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.
|
| -
|
| -
|
| -@DocsEditable
|
| -@DomName('SQLException')
|
| -class SqlException native "*SQLException" {
|
| -
|
| - static const int CONSTRAINT_ERR = 6;
|
| -
|
| - static const int DATABASE_ERR = 1;
|
| -
|
| - static const int QUOTA_ERR = 4;
|
| -
|
| - static const int SYNTAX_ERR = 5;
|
| -
|
| - static const int TIMEOUT_ERR = 7;
|
| -
|
| - static const int TOO_LARGE_ERR = 3;
|
| -
|
| - static const int UNKNOWN_ERR = 0;
|
| -
|
| - static const int VERSION_ERR = 2;
|
| -
|
| - @DomName('SQLException.code')
|
| - @DocsEditable
|
| - final int code;
|
| -
|
| - @DomName('SQLException.message')
|
| - @DocsEditable
|
| - final String message;
|
| -}
|
| -// Copyright (c) 2012, 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.
|
| -
|
| -
|
| -@DocsEditable
|
| -@DomName('SQLResultSet')
|
| -class SqlResultSet native "*SQLResultSet" {
|
| -
|
| - @DomName('SQLResultSet.insertId')
|
| - @DocsEditable
|
| - final int insertId;
|
| -
|
| - @DomName('SQLResultSet.rows')
|
| - @DocsEditable
|
| - final SqlResultSetRowList rows;
|
| -
|
| - @DomName('SQLResultSet.rowsAffected')
|
| - @DocsEditable
|
| - final int rowsAffected;
|
| -}
|
| -// Copyright (c) 2012, 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.
|
| -
|
| -
|
| -@DocsEditable
|
| -@DomName('SQLResultSetRowList')
|
| -class SqlResultSetRowList implements JavaScriptIndexingBehavior, List<Map> native "*SQLResultSetRowList" {
|
| -
|
| - @DomName('SQLResultSetRowList.length')
|
| - @DocsEditable
|
| - int get length => JS("int", "#.length", this);
|
| -
|
| - Map operator[](int index) => this.item(index);
|
| -
|
| - void operator[]=(int index, Map value) {
|
| - throw new UnsupportedError("Cannot assign element of immutable List.");
|
| - }
|
| - // -- start List<Map> mixins.
|
| - // Map is the element type.
|
| -
|
| - // From Iterable<Map>:
|
| -
|
| - Iterator<Map> get iterator {
|
| - // Note: NodeLists are not fixed size. And most probably length shouldn't
|
| - // be cached in both iterator _and_ forEach method. For now caching it
|
| - // for consistency.
|
| - return new FixedSizeListIterator<Map>(this);
|
| - }
|
| -
|
| - Map reduce(Map combine(Map value, Map element)) {
|
| - return IterableMixinWorkaround.reduce(this, combine);
|
| - }
|
| -
|
| - dynamic fold(dynamic initialValue,
|
| - dynamic combine(dynamic previousValue, Map element)) {
|
| - return IterableMixinWorkaround.fold(this, initialValue, combine);
|
| - }
|
| -
|
| - bool contains(Map element) => IterableMixinWorkaround.contains(this, element);
|
| -
|
| - void forEach(void f(Map element)) => IterableMixinWorkaround.forEach(this, f);
|
| -
|
| - String join([String separator = ""]) =>
|
| - IterableMixinWorkaround.joinList(this, separator);
|
| -
|
| - Iterable map(f(Map element)) =>
|
| - IterableMixinWorkaround.mapList(this, f);
|
| -
|
| - Iterable<Map> where(bool f(Map element)) =>
|
| - IterableMixinWorkaround.where(this, f);
|
| -
|
| - Iterable expand(Iterable f(Map element)) =>
|
| - IterableMixinWorkaround.expand(this, f);
|
| -
|
| - bool every(bool f(Map element)) => IterableMixinWorkaround.every(this, f);
|
| -
|
| - bool any(bool f(Map element)) => IterableMixinWorkaround.any(this, f);
|
| -
|
| - List<Map> toList({ bool growable: true }) =>
|
| - new List<Map>.from(this, growable: growable);
|
| -
|
| - Set<Map> toSet() => new Set<Map>.from(this);
|
| -
|
| - bool get isEmpty => this.length == 0;
|
| -
|
| - Iterable<Map> take(int n) => IterableMixinWorkaround.takeList(this, n);
|
| -
|
| - Iterable<Map> takeWhile(bool test(Map value)) {
|
| - return IterableMixinWorkaround.takeWhile(this, test);
|
| - }
|
| -
|
| - Iterable<Map> skip(int n) => IterableMixinWorkaround.skipList(this, n);
|
| -
|
| - Iterable<Map> skipWhile(bool test(Map value)) {
|
| - return IterableMixinWorkaround.skipWhile(this, test);
|
| - }
|
| -
|
| - Map firstWhere(bool test(Map value), { Map orElse() }) {
|
| - return IterableMixinWorkaround.firstWhere(this, test, orElse);
|
| - }
|
| -
|
| - Map lastWhere(bool test(Map value), {Map orElse()}) {
|
| - return IterableMixinWorkaround.lastWhereList(this, test, orElse);
|
| - }
|
| -
|
| - Map singleWhere(bool test(Map value)) {
|
| - return IterableMixinWorkaround.singleWhere(this, test);
|
| - }
|
| -
|
| - Map elementAt(int index) {
|
| - return this[index];
|
| - }
|
| -
|
| - // From Collection<Map>:
|
| -
|
| - void add(Map value) {
|
| - throw new UnsupportedError("Cannot add to immutable List.");
|
| - }
|
| -
|
| - void addAll(Iterable<Map> iterable) {
|
| - throw new UnsupportedError("Cannot add to immutable List.");
|
| - }
|
| -
|
| - // From List<Map>:
|
| - void set length(int value) {
|
| - throw new UnsupportedError("Cannot resize immutable List.");
|
| - }
|
| -
|
| - void clear() {
|
| - throw new UnsupportedError("Cannot clear immutable List.");
|
| - }
|
| -
|
| - Iterable<Map> get reversed {
|
| - return IterableMixinWorkaround.reversedList(this);
|
| - }
|
| -
|
| - void sort([int compare(Map a, Map b)]) {
|
| - throw new UnsupportedError("Cannot sort immutable List.");
|
| - }
|
| -
|
| - int indexOf(Map element, [int start = 0]) =>
|
| - Lists.indexOf(this, element, start, this.length);
|
| -
|
| - int lastIndexOf(Map element, [int start]) {
|
| - if (start == null) start = length - 1;
|
| - return Lists.lastIndexOf(this, element, start);
|
| - }
|
| -
|
| - Map get first {
|
| - if (this.length > 0) return this[0];
|
| - throw new StateError("No elements");
|
| - }
|
| -
|
| - Map get last {
|
| - if (this.length > 0) return this[this.length - 1];
|
| - throw new StateError("No elements");
|
| - }
|
| -
|
| - Map get single {
|
| - if (length == 1) return this[0];
|
| - if (length == 0) throw new StateError("No elements");
|
| - throw new StateError("More than one element");
|
| - }
|
| -
|
| - void insert(int index, Map element) {
|
| - throw new UnsupportedError("Cannot add to immutable List.");
|
| - }
|
| -
|
| - void insertAll(int index, Iterable<Map> iterable) {
|
| - throw new UnsupportedError("Cannot add to immutable List.");
|
| - }
|
| -
|
| - void setAll(int index, Iterable<Map> iterable) {
|
| - throw new UnsupportedError("Cannot modify an immutable List.");
|
| - }
|
| -
|
| - Map removeAt(int pos) {
|
| - throw new UnsupportedError("Cannot remove from immutable List.");
|
| - }
|
| -
|
| - Map removeLast() {
|
| - throw new UnsupportedError("Cannot remove from immutable List.");
|
| - }
|
| -
|
| - void remove(Object object) {
|
| - throw new UnsupportedError("Cannot remove from immutable List.");
|
| - }
|
| -
|
| - void removeWhere(bool test(Map element)) {
|
| - throw new UnsupportedError("Cannot remove from immutable List.");
|
| - }
|
| -
|
| - void retainWhere(bool test(Map element)) {
|
| - throw new UnsupportedError("Cannot remove from immutable List.");
|
| - }
|
| -
|
| - void setRange(int start, int end, Iterable<Map> iterable, [int skipCount]) {
|
| - throw new UnsupportedError("Cannot setRange on immutable List.");
|
| - }
|
| -
|
| - void removeRange(int start, int end) {
|
| - throw new UnsupportedError("Cannot removeRange on immutable List.");
|
| - }
|
| -
|
| - void replaceRange(int start, int end, Iterable<Map> iterable) {
|
| - throw new UnsupportedError("Cannot modify an immutable List.");
|
| - }
|
| -
|
| - void fillRange(int start, int end, [Map fillValue]) {
|
| - throw new UnsupportedError("Cannot modify an immutable List.");
|
| - }
|
| -
|
| - Iterable<Map> getRange(int start, int end) =>
|
| - IterableMixinWorkaround.getRangeList(this, start, end);
|
| -
|
| - List<Map> sublist(int start, [int end]) {
|
| - if (end == null) end = length;
|
| - return Lists.getRange(this, start, end, <Map>[]);
|
| - }
|
| -
|
| - Map<int, Map> asMap() =>
|
| - IterableMixinWorkaround.asMapList(this);
|
| -
|
| - String toString() {
|
| - StringBuffer buffer = new StringBuffer('[');
|
| - buffer.writeAll(this, ', ');
|
| - buffer.write(']');
|
| - return buffer.toString();
|
| - }
|
| -
|
| - // -- end List<Map> mixins.
|
| -
|
| - @DomName('SQLResultSetRowList.item')
|
| - @DocsEditable
|
| - @Creates('=Object')
|
| - Map item(int index) {
|
| - return convertNativeToDart_Dictionary(_item_1(index));
|
| - }
|
| - @JSName('item')
|
| - @DomName('SQLResultSetRowList.item')
|
| - @DocsEditable
|
| - @Creates('=Object')
|
| - _item_1(index) native;
|
| -}
|
| -// Copyright (c) 2012, 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.
|
| -
|
| -
|
| -@DocsEditable
|
| -@DomName('SQLTransaction')
|
| -@SupportedBrowser(SupportedBrowser.CHROME)
|
| -@SupportedBrowser(SupportedBrowser.SAFARI)
|
| -@Experimental
|
| -class SqlTransaction native "*SQLTransaction" {
|
| -
|
| - @DomName('SQLTransaction.executeSql')
|
| - @DocsEditable
|
| - void executeSql(String sqlStatement, List arguments, [SqlStatementCallback callback, SqlStatementErrorCallback errorCallback]) native;
|
| -}
|
| -// Copyright (c) 2012, 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.
|
| -
|
| -
|
| /**
|
| * The type used by the
|
| * [Window.localStorage] and [Window.sessionStorage] properties.
|
| @@ -28219,18 +27828,6 @@ abstract class _Rect native "*Rect" {
|
|
|
|
|
| @DocsEditable
|
| -@DomName('SQLTransactionSync')
|
| -@SupportedBrowser(SupportedBrowser.CHROME)
|
| -@SupportedBrowser(SupportedBrowser.SAFARI)
|
| -@Experimental
|
| -abstract class _SQLTransactionSync native "*SQLTransactionSync" {
|
| -}
|
| -// Copyright (c) 2012, 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.
|
| -
|
| -
|
| -@DocsEditable
|
| @DomName('SharedWorker')
|
| abstract class _SharedWorker extends AbstractWorker native "*SharedWorker" {
|
|
|
|
|