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

Unified Diff: lib/runtime/dart_sdk.js

Side-by-side diff isn't available for this file because of its large size.
Issue 1920473003: Use correct annotation for JS names (Closed) Base URL: https://github.com/dart-lang/dev_compiler.git@master
Patch Set: Address comments Created 4 years, 8 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:
Download patch
« no previous file with comments | « no previous file | lib/src/compiler/js_interop.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/runtime/dart_sdk.js
diff --git a/lib/runtime/dart_sdk.js b/lib/runtime/dart_sdk.js
index f91ed22392ba9258c23f20c0ddf4e82b0c6c49f0..9ff271e40e93f7578996482b835c2291ed15e28c 100644
--- a/lib/runtime/dart_sdk.js
+++ b/lib/runtime/dart_sdk.js
@@ -10539,7 +10539,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
]);
_native_typed_data.NativeByteBuffer = class NativeByteBuffer extends core.Object {
get [dartx.lengthInBytes]() {
- return this.lengthInBytes;
+ return this.byteLength;
}
get runtimeType() {
return typed_data.ByteBuffer;
@@ -11577,13 +11577,13 @@ dart_library.library('dart_sdk', null, /* Imports */[
return this.buffer;
}
get [dartx.lengthInBytes]() {
- return this.lengthInBytes;
+ return this.byteLength;
}
get [dartx.offsetInBytes]() {
- return this.offsetInBytes;
+ return this.byteOffset;
}
get [dartx.elementSizeInBytes]() {
- return this.elementSizeInBytes;
+ return this.BYTES_PER_ELEMENT;
}
[_invalidIndex](index, length) {
if (dart.notNull(index) < 0 || dart.notNull(index) >= dart.notNull(length)) {
@@ -11699,28 +11699,28 @@ dart_library.library('dart_sdk', null, /* Imports */[
return this[_getFloat32](byteOffset, dart.equals(typed_data.Endianness.LITTLE_ENDIAN, endian));
}
[_getFloat32](byteOffset, littleEndian) {
- return this._getFloat32(byteOffset, littleEndian);
+ return this.getFloat32(byteOffset, littleEndian);
}
[dartx.getFloat64](byteOffset, endian) {
if (endian === void 0) endian = typed_data.Endianness.BIG_ENDIAN;
return this[_getFloat64](byteOffset, dart.equals(typed_data.Endianness.LITTLE_ENDIAN, endian));
}
[_getFloat64](byteOffset, littleEndian) {
- return this._getFloat64(byteOffset, littleEndian);
+ return this.getFloat64(byteOffset, littleEndian);
}
[dartx.getInt16](byteOffset, endian) {
if (endian === void 0) endian = typed_data.Endianness.BIG_ENDIAN;
return this[_getInt16](byteOffset, dart.equals(typed_data.Endianness.LITTLE_ENDIAN, endian));
}
[_getInt16](byteOffset, littleEndian) {
- return this._getInt16(byteOffset, littleEndian);
+ return this.getInt16(byteOffset, littleEndian);
}
[dartx.getInt32](byteOffset, endian) {
if (endian === void 0) endian = typed_data.Endianness.BIG_ENDIAN;
return this[_getInt32](byteOffset, dart.equals(typed_data.Endianness.LITTLE_ENDIAN, endian));
}
[_getInt32](byteOffset, littleEndian) {
- return this._getInt32(byteOffset, littleEndian);
+ return this.getInt32(byteOffset, littleEndian);
}
[dartx.getInt64](byteOffset, endian) {
if (endian === void 0) endian = typed_data.Endianness.BIG_ENDIAN;
@@ -11734,14 +11734,14 @@ dart_library.library('dart_sdk', null, /* Imports */[
return this[_getUint16](byteOffset, dart.equals(typed_data.Endianness.LITTLE_ENDIAN, endian));
}
[_getUint16](byteOffset, littleEndian) {
- return this._getUint16(byteOffset, littleEndian);
+ return this.getUint16(byteOffset, littleEndian);
}
[dartx.getUint32](byteOffset, endian) {
if (endian === void 0) endian = typed_data.Endianness.BIG_ENDIAN;
return this[_getUint32](byteOffset, dart.equals(typed_data.Endianness.LITTLE_ENDIAN, endian));
}
[_getUint32](byteOffset, littleEndian) {
- return this._getUint32(byteOffset, littleEndian);
+ return this.getUint32(byteOffset, littleEndian);
}
[dartx.getUint64](byteOffset, endian) {
if (endian === void 0) endian = typed_data.Endianness.BIG_ENDIAN;
@@ -11755,28 +11755,28 @@ dart_library.library('dart_sdk', null, /* Imports */[
return this[_setFloat32](byteOffset, value, dart.equals(typed_data.Endianness.LITTLE_ENDIAN, endian));
}
[_setFloat32](byteOffset, value, littleEndian) {
- return this._setFloat32(byteOffset, value, littleEndian);
+ return this.setFloat32(byteOffset, value, littleEndian);
}
[dartx.setFloat64](byteOffset, value, endian) {
if (endian === void 0) endian = typed_data.Endianness.BIG_ENDIAN;
return this[_setFloat64](byteOffset, value, dart.equals(typed_data.Endianness.LITTLE_ENDIAN, endian));
}
[_setFloat64](byteOffset, value, littleEndian) {
- return this._setFloat64(byteOffset, value, littleEndian);
+ return this.setFloat64(byteOffset, value, littleEndian);
}
[dartx.setInt16](byteOffset, value, endian) {
if (endian === void 0) endian = typed_data.Endianness.BIG_ENDIAN;
return this[_setInt16](byteOffset, value, dart.equals(typed_data.Endianness.LITTLE_ENDIAN, endian));
}
[_setInt16](byteOffset, value, littleEndian) {
- return this._setInt16(byteOffset, value, littleEndian);
+ return this.setInt16(byteOffset, value, littleEndian);
}
[dartx.setInt32](byteOffset, value, endian) {
if (endian === void 0) endian = typed_data.Endianness.BIG_ENDIAN;
return this[_setInt32](byteOffset, value, dart.equals(typed_data.Endianness.LITTLE_ENDIAN, endian));
}
[_setInt32](byteOffset, value, littleEndian) {
- return this._setInt32(byteOffset, value, littleEndian);
+ return this.setInt32(byteOffset, value, littleEndian);
}
[dartx.setInt64](byteOffset, value, endian) {
if (endian === void 0) endian = typed_data.Endianness.BIG_ENDIAN;
@@ -11790,14 +11790,14 @@ dart_library.library('dart_sdk', null, /* Imports */[
return this[_setUint16](byteOffset, value, dart.equals(typed_data.Endianness.LITTLE_ENDIAN, endian));
}
[_setUint16](byteOffset, value, littleEndian) {
- return this._setUint16(byteOffset, value, littleEndian);
+ return this.setUint16(byteOffset, value, littleEndian);
}
[dartx.setUint32](byteOffset, value, endian) {
if (endian === void 0) endian = typed_data.Endianness.BIG_ENDIAN;
return this[_setUint32](byteOffset, value, dart.equals(typed_data.Endianness.LITTLE_ENDIAN, endian));
}
[_setUint32](byteOffset, value, littleEndian) {
- return this._setUint32(byteOffset, value, littleEndian);
+ return this.setUint32(byteOffset, value, littleEndian);
}
[dartx.setUint64](byteOffset, value, endian) {
if (endian === void 0) endian = typed_data.Endianness.BIG_ENDIAN;
@@ -30542,14 +30542,14 @@ dart_library.library('dart_sdk', null, /* Imports */[
return this.continuePrimaryKey(key, primaryKey);
}
[_delete]() {
- return this._delete();
+ return this.delete();
}
[_update](value) {
let value_1 = html_common.convertDartToNative_SerializedScriptValue(value);
return this[_update_1](value_1);
}
[_update_1](value) {
- return this._update_1(value);
+ return this.update(value);
}
};
dart.setSignature(indexed_db.Cursor, {
@@ -30622,13 +30622,13 @@ dart_library.library('dart_sdk', null, /* Imports */[
dart.throw(new core.UnsupportedError("Not supported"));
}
[_addEventListener](type, listener, capture) {
- return this._addEventListener(type, listener, capture);
+ return this.addEventListener(type, listener, capture);
}
[dartx.dispatchEvent](event) {
return this.dispatchEvent(event);
}
[_removeEventListener](type, listener, capture) {
- return this._removeEventListener(type, listener, capture);
+ return this.removeEventListener(type, listener, capture);
}
};
dart.defineNamedConstructor(html$.EventTarget, '_created');
@@ -30702,7 +30702,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
return this[_transaction](storeNames, mode);
}
[_transaction](stores, mode) {
- return this._transaction(stores, mode);
+ return this.transaction(stores, mode);
}
static _() {
dart.throw(new core.UnsupportedError("Not supported"));
@@ -30728,10 +30728,10 @@ dart_library.library('dart_sdk', null, /* Imports */[
return this[_createObjectStore_2](name);
}
[_createObjectStore_1](name, options) {
- return this._createObjectStore_1(name, options);
+ return this.createObjectStore(name, options);
}
[_createObjectStore_2](name) {
- return this._createObjectStore_2(name);
+ return this.createObjectStore(name);
}
[dartx.deleteObjectStore](name) {
return this.deleteObjectStore(name);
@@ -30861,13 +30861,13 @@ dart_library.library('dart_sdk', null, /* Imports */[
return this.cmp(first, second);
}
[_deleteDatabase](name) {
- return this._deleteDatabase(name);
+ return this.deleteDatabase(name);
}
[_open](name, version) {
- return this._open(name, version);
+ return this.open(name, version);
}
[_webkitGetDatabaseNames]() {
- return this._webkitGetDatabaseNames();
+ return this.webkitGetDatabaseNames();
}
};
dart.setSignature(indexed_db.IdbFactory, {
@@ -31007,10 +31007,10 @@ dart_library.library('dart_sdk', null, /* Imports */[
return this.unique;
}
[_count$](key) {
- return this._count(key);
+ return this.count(key);
}
[_get$](key) {
- return this._get(key);
+ return this.get(key);
}
[dartx.getAll](range, maxCount) {
return this.getAll(range, maxCount);
@@ -31019,13 +31019,13 @@ dart_library.library('dart_sdk', null, /* Imports */[
return this.getAllKeys(range, maxCount);
}
[_getKey$](key) {
- return this._getKey(key);
+ return this.getKey(key);
}
[_openCursor](range, direction) {
- return this._openCursor(range, direction);
+ return this.openCursor(range, direction);
}
[_openKeyCursor](range, direction) {
- return this._openKeyCursor(range, direction);
+ return this.openKeyCursor(range, direction);
}
};
dart.setSignature(indexed_db.Index, {
@@ -31269,16 +31269,16 @@ dart_library.library('dart_sdk', null, /* Imports */[
return this[_add_2](value_1);
}
[_add_1](value, key) {
- return this._add_1(value, key);
+ return this.add(value, key);
}
[_add_2](value) {
- return this._add_2(value);
+ return this.add(value);
}
[_clear$0]() {
- return this._clear();
+ return this.clear();
}
[_count$](key) {
- return this._count(key);
+ return this.count(key);
}
[_createIndex](name, keyPath, options) {
if (options === void 0) options = null;
@@ -31289,19 +31289,19 @@ dart_library.library('dart_sdk', null, /* Imports */[
return this[_createIndex_2](name, keyPath);
}
[_createIndex_1](name, keyPath, options) {
- return this._createIndex_1(name, keyPath, options);
+ return this.createIndex(name, keyPath, options);
}
[_createIndex_2](name, keyPath) {
- return this._createIndex_2(name, keyPath);
+ return this.createIndex(name, keyPath);
}
[_delete](key) {
- return this._delete(key);
+ return this.delete(key);
}
[dartx.deleteIndex](name) {
return this.deleteIndex(name);
}
[_get$](key) {
- return this._get(key);
+ return this.get(key);
}
[dartx.getAll](range, maxCount) {
return this.getAll(range, maxCount);
@@ -31313,7 +31313,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
return this.index(name);
}
[_openCursor](range, direction) {
- return this._openCursor(range, direction);
+ return this.openCursor(range, direction);
}
[dartx.openKeyCursor](range, direction) {
return this.openKeyCursor(range, direction);
@@ -31329,10 +31329,10 @@ dart_library.library('dart_sdk', null, /* Imports */[
return this[_put_2](value_1);
}
[_put_1](value, key) {
- return this._put_1(value, key);
+ return this.put(value, key);
}
[_put_2](value) {
- return this._put_2(value);
+ return this.put(value);
}
static _cursorStreamFromResult(request, autoAdvance) {
let controller = async.StreamController.new({sync: true});
@@ -31646,7 +31646,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
return this.type;
}
[_initEvent](type, bubbles, cancelable) {
- return this._initEvent(type, bubbles, cancelable);
+ return this.initEvent(type, bubbles, cancelable);
}
[dartx.preventDefault]() {
return this.preventDefault();
@@ -31930,10 +31930,10 @@ dart_library.library('dart_sdk', null, /* Imports */[
this.textContent = value;
}
[dartx.append](node) {
- return this.append(node);
+ return this.appendChild(node);
}
[dartx.clone](deep) {
- return this.clone(deep);
+ return this.cloneNode(deep);
}
[dartx.contains](other) {
return this.contains(other);
@@ -31945,10 +31945,10 @@ dart_library.library('dart_sdk', null, /* Imports */[
return this.insertBefore(node, child);
}
[_removeChild](child) {
- return this._removeChild(child);
+ return this.removeChild(child);
}
[_replaceChild](node, child) {
- return this._replaceChild(node, child);
+ return this.replaceChild(node, child);
}
};
dart.defineNamedConstructor(html$.Node, '_created');
@@ -32393,7 +32393,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
return convertedTiming == null ? this[_animate](convertedFrames) : this[_animate](convertedFrames, convertedTiming);
}
[_animate](effect, timing) {
- return this._animate(effect, timing);
+ return this.animate(effect, timing);
}
[dartx.attributeChanged](name, oldValue, newValue) {}
get [_xtag]() {
@@ -32454,7 +32454,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
}
}
[_insertAdjacentText](where, text) {
- return this._insertAdjacentText(where, text);
+ return this.insertAdjacentText(where, text);
}
[dartx.insertAdjacentHtml](where, html, opts) {
let validator = opts && 'validator' in opts ? opts.validator : null;
@@ -32466,7 +32466,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
}
}
[_insertAdjacentHtml](where, text) {
- return this._insertAdjacentHtml(where, text);
+ return this.insertAdjacentHTML(where, text);
}
[dartx.insertAdjacentElement](where, element) {
if (!!this.insertAdjacentElement) {
@@ -32477,7 +32477,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
return element;
}
[_insertAdjacentElement](where, element) {
- return this._insertAdjacentElement(where, element);
+ return this.insertAdjacentElement(where, element);
}
[_insertAdjacentNode](where, node) {
switch (where[dartx.toLowerCase]()) {
@@ -32888,19 +32888,19 @@ dart_library.library('dart_sdk', null, /* Imports */[
return this.getElementsByClassName(classNames);
}
[_getElementsByTagName](localName) {
- return this._getElementsByTagName(localName);
+ return this.getElementsByTagName(localName);
}
[_hasAttribute](name) {
- return this._hasAttribute(name);
+ return this.hasAttribute(name);
}
[_hasAttributeNS](namespaceURI, localName) {
- return this._hasAttributeNS(namespaceURI, localName);
+ return this.hasAttributeNS(namespaceURI, localName);
}
[_removeAttribute](name) {
- return this._removeAttribute(name);
+ return this.removeAttribute(name);
}
[_removeAttributeNS](namespaceURI, localName) {
- return this._removeAttributeNS(namespaceURI, localName);
+ return this.removeAttributeNS(namespaceURI, localName);
}
[dartx.requestFullscreen]() {
return this.requestFullscreen();
@@ -32927,13 +32927,13 @@ dart_library.library('dart_sdk', null, /* Imports */[
dart.throw(new core.ArgumentError("Incorrect number or type of arguments"));
}
[_scroll_1]() {
- return this._scroll_1();
+ return this.scroll();
}
[_scroll_2](options) {
- return this._scroll_2(options);
+ return this.scroll(options);
}
[_scroll_3](x, y) {
- return this._scroll_3(x, y);
+ return this.scroll(x, y);
}
[dartx.scrollBy](options_OR_x, y) {
if (options_OR_x === void 0) options_OR_x = null;
@@ -32954,19 +32954,19 @@ dart_library.library('dart_sdk', null, /* Imports */[
dart.throw(new core.ArgumentError("Incorrect number or type of arguments"));
}
[_scrollBy_1]() {
- return this._scrollBy_1();
+ return this.scrollBy();
}
[_scrollBy_2](options) {
- return this._scrollBy_2(options);
+ return this.scrollBy(options);
}
[_scrollBy_3](x, y) {
- return this._scrollBy_3(x, y);
+ return this.scrollBy(x, y);
}
[_scrollIntoView](alignWithTop) {
- return this._scrollIntoView(alignWithTop);
+ return this.scrollIntoView(alignWithTop);
}
[_scrollIntoViewIfNeeded](centerIfNeeded) {
- return this._scrollIntoViewIfNeeded(centerIfNeeded);
+ return this.scrollIntoViewIfNeeded(centerIfNeeded);
}
[dartx.scrollTo](options_OR_x, y) {
if (options_OR_x === void 0) options_OR_x = null;
@@ -32987,13 +32987,13 @@ dart_library.library('dart_sdk', null, /* Imports */[
dart.throw(new core.ArgumentError("Incorrect number or type of arguments"));
}
[_scrollTo_1]() {
- return this._scrollTo_1();
+ return this.scrollTo();
}
[_scrollTo_2](options) {
- return this._scrollTo_2(options);
+ return this.scrollTo(options);
}
[_scrollTo_3](x, y) {
- return this._scrollTo_3(x, y);
+ return this.scrollTo(x, y);
}
[dartx.setAttribute](name, value) {
return this.setAttribute(name, value);
@@ -33029,7 +33029,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
return this.querySelector(selectors);
}
[_querySelectorAll](selectors) {
- return this._querySelectorAll(selectors);
+ return this.querySelectorAll(selectors);
}
get [dartx.onAbort]() {
return html$.Element.abortEvent.forElement(this);
@@ -34577,13 +34577,13 @@ dart_library.library('dart_sdk', null, /* Imports */[
return this.setSinkId(sinkId);
}
[dartx.addKey](keySystem, key, initData, sessionId) {
- return this.addKey(keySystem, key, initData, sessionId);
+ return this.webkitAddKey(keySystem, key, initData, sessionId);
}
[dartx.cancelKeyRequest](keySystem, sessionId) {
- return this.cancelKeyRequest(keySystem, sessionId);
+ return this.webkitCancelKeyRequest(keySystem, sessionId);
}
[dartx.generateKeyRequest](keySystem, initData) {
- return this.generateKeyRequest(keySystem, initData);
+ return this.webkitGenerateKeyRequest(keySystem, initData);
}
get [dartx.onKeyAdded]() {
return html$.MediaElement.keyAddedEvent.forElement(this);
@@ -35026,7 +35026,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
return this[_requestDevice_1](options_1);
}
[_requestDevice_1](options) {
- return this._requestDevice_1(options);
+ return this.requestDevice(options);
}
};
dart.setSignature(html$.Bluetooth, {
@@ -35042,7 +35042,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
dart.throw(new core.UnsupportedError("Not supported"));
}
connectGatt() {
- return this.connectGatt();
+ return this.connectGATT();
}
};
dart.setSignature(html$.BluetoothDevice, {
@@ -35556,10 +35556,10 @@ dart_library.library('dart_sdk', null, /* Imports */[
return this[_match_2](request);
}
[_match_1](request, options) {
- return this._match_1(request, options);
+ return this.match(request, options);
}
[_match_2](request) {
- return this._match_2(request);
+ return this.match(request);
}
[dartx.open](cacheName) {
return this.open(cacheName);
@@ -35630,13 +35630,13 @@ dart_library.library('dart_sdk', null, /* Imports */[
return this[_getContext_2](contextId);
}
[_getContext_1](contextId, attributes) {
- return this._getContext_1(contextId, attributes);
+ return this.getContext(contextId, attributes);
}
[_getContext_2](contextId) {
- return this._getContext_2(contextId);
+ return this.getContext(contextId);
}
[_toDataUrl](type, arguments_OR_quality) {
- return this._toDataUrl(type, arguments_OR_quality);
+ return this.toDataURL(type, arguments_OR_quality);
}
get [dartx.onWebGlContextLost]() {
return html$.CanvasElement.webGlContextLostEvent.forElement(this);
@@ -35950,10 +35950,10 @@ dart_library.library('dart_sdk', null, /* Imports */[
return;
}
[_addHitRegion_1](options) {
- return this._addHitRegion_1(options);
+ return this.addHitRegion(options);
}
[_addHitRegion_2]() {
- return this._addHitRegion_2();
+ return this.addHitRegion();
}
[dartx.beginPath]() {
return this.beginPath();
@@ -35979,10 +35979,10 @@ dart_library.library('dart_sdk', null, /* Imports */[
dart.throw(new core.ArgumentError("Incorrect number or type of arguments"));
}
[_createImageData_1](imagedata) {
- return this._createImageData_1(imagedata);
+ return this.createImageData(imagedata);
}
[_createImageData_2](sw, sh) {
- return this._createImageData_2(sw, sh);
+ return this.createImageData(sw, sh);
}
[dartx.createLinearGradient](x0, y0, x1, y1) {
return this.createLinearGradient(x0, y0, x1, y1);
@@ -36003,16 +36003,16 @@ dart_library.library('dart_sdk', null, /* Imports */[
return html_common.convertNativeToDart_Dictionary(this[_getContextAttributes_1]());
}
[_getContextAttributes_1]() {
- return this._getContextAttributes_1();
+ return this.getContextAttributes();
}
[dartx.getImageData](sx, sy, sw, sh) {
return html_common.convertNativeToDart_ImageData(this[_getImageData_1](sx, sy, sw, sh));
}
[_getImageData_1](sx, sy, sw, sh) {
- return this._getImageData_1(sx, sy, sw, sh);
+ return this.getImageData(sx, sy, sw, sh);
}
[_getLineDash]() {
- return this._getLineDash();
+ return this.getLineDash();
}
[dartx.isContextLost]() {
return this.isContextLost();
@@ -36044,10 +36044,10 @@ dart_library.library('dart_sdk', null, /* Imports */[
dart.throw(new core.ArgumentError("Incorrect number or type of arguments"));
}
[_putImageData_1](imagedata, dx, dy) {
- return this._putImageData_1(imagedata, dx, dy);
+ return this.putImageData(imagedata, dx, dy);
}
[_putImageData_2](imagedata, dx, dy, dirtyX, dirtyY, dirtyWidth, dirtyHeight) {
- return this._putImageData_2(imagedata, dx, dy, dirtyX, dirtyY, dirtyWidth, dirtyHeight);
+ return this.putImageData(imagedata, dx, dy, dirtyX, dirtyY, dirtyWidth, dirtyHeight);
}
[dartx.removeHitRegion](id) {
return this.removeHitRegion(id);
@@ -36089,7 +36089,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
return this.translate(x, y);
}
[_arc](x, y, radius, startAngle, endAngle, anticlockwise) {
- return this._arc(x, y, radius, startAngle, endAngle, anticlockwise);
+ return this.arc(x, y, radius, startAngle, endAngle, anticlockwise);
}
[dartx.arcTo](x1, y1, x2, y2, radius) {
return this.arcTo(x1, y1, x2, y2, radius);
@@ -36153,10 +36153,10 @@ dart_library.library('dart_sdk', null, /* Imports */[
return this.drawImage(source, destX, destY);
}
[dartx.drawImageScaled](source, destX, destY, destWidth, destHeight) {
- return this.drawImageScaled(source, destX, destY, destWidth, destHeight);
+ return this.drawImage(source, destX, destY, destWidth, destHeight);
}
[dartx.drawImageScaledFromSource](source, sourceX, sourceY, sourceWidth, sourceHeight, destX, destY, destWidth, destHeight) {
- return this.drawImageScaledFromSource(source, sourceX, sourceY, sourceWidth, sourceHeight, destX, destY, destWidth, destHeight);
+ return this.drawImage(source, sourceX, sourceY, sourceWidth, sourceHeight, destX, destY, destWidth, destHeight);
}
get [dartx.lineDashOffset]() {
return this.lineDashOffset || this.webkitLineDashOffset;
@@ -36356,10 +36356,10 @@ dart_library.library('dart_sdk', null, /* Imports */[
return;
}
[_postMessage_1](message, transfer) {
- return this._postMessage_1(message, transfer);
+ return this.postMessage(message, transfer);
}
[_postMessage_2](message) {
- return this._postMessage_2(message);
+ return this.postMessage(message);
}
};
dart.setSignature(html$.Client, {
@@ -36389,10 +36389,10 @@ dart_library.library('dart_sdk', null, /* Imports */[
return this[_matchAll_2]();
}
[_matchAll_1](options) {
- return this._matchAll_1(options);
+ return this.matchAll(options);
}
[_matchAll_2]() {
- return this._matchAll_2();
+ return this.matchAll();
}
openWindow(url) {
return this.openWindow(url);
@@ -36544,7 +36544,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
return this.which;
}
[_initUIEvent](type, bubbles, cancelable, view, detail) {
- return this._initUIEvent(type, bubbles, cancelable, view, detail);
+ return this.initUIEvent(type, bubbles, cancelable, view, detail);
}
};
dart.setSignature(html$.UIEvent, {
@@ -36600,7 +36600,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
return this.data;
}
[_initCompositionEvent](type, bubbles, cancelable, view, data) {
- return this._initCompositionEvent(type, bubbles, cancelable, view, data);
+ return this.initCompositionEvent(type, bubbles, cancelable, view, data);
}
};
dart.setSignature(html$.CompositionEvent, {
@@ -36669,10 +36669,10 @@ dart_library.library('dart_sdk', null, /* Imports */[
return;
}
[_postMessage_1](message, transfer) {
- return this._postMessage_1(message, transfer);
+ return this.postMessage(message, transfer);
}
[_postMessage_2](message) {
- return this._postMessage_2(message);
+ return this.postMessage(message);
}
terminate() {
return this.terminate();
@@ -36779,16 +36779,16 @@ dart_library.library('dart_sdk', null, /* Imports */[
return this[_fetch_2](input);
}
[_fetch_1](input, init) {
- return this._fetch_1(input, init);
+ return this.fetch(input, init);
}
[_fetch_2](input) {
- return this._fetch_2(input);
+ return this.fetch(input);
}
[dartx.importScripts](urls) {
return this.importScripts(urls);
}
[_webkitRequestFileSystem](type, size, successCallback, errorCallback) {
- return this._webkitRequestFileSystem(type, size, successCallback, errorCallback);
+ return this.webkitRequestFileSystem(type, size, successCallback, errorCallback);
}
[dartx.webkitRequestFileSystem](type, size) {
let completer = async.Completer$(html$.FileSystem).new();
@@ -36800,13 +36800,13 @@ dart_library.library('dart_sdk', null, /* Imports */[
return completer.future;
}
[dartx.requestFileSystemSync](type, size) {
- return this.requestFileSystemSync(type, size);
+ return this.webkitRequestFileSystemSync(type, size);
}
[dartx.resolveLocalFileSystemSyncUrl](url) {
- return this.resolveLocalFileSystemSyncUrl(url);
+ return this.webkitResolveLocalFileSystemSyncURL(url);
}
[_webkitResolveLocalFileSystemUrl](url, successCallback, errorCallback) {
- return this._webkitResolveLocalFileSystemUrl(url, successCallback, errorCallback);
+ return this.webkitResolveLocalFileSystemURL(url, successCallback, errorCallback);
}
[dartx.webkitResolveLocalFileSystemUrl](url) {
let completer = async.Completer$(html$.Entry).new();
@@ -36824,22 +36824,22 @@ dart_library.library('dart_sdk', null, /* Imports */[
return this.btoa(btoa);
}
[_setInterval_String](handler, timeout, arguments$) {
- return this._setInterval_String(handler, timeout, arguments$);
+ return this.setInterval(handler, timeout, arguments$);
}
[_setTimeout_String](handler, timeout, arguments$) {
- return this._setTimeout_String(handler, timeout, arguments$);
+ return this.setTimeout(handler, timeout, arguments$);
}
[_clearInterval](handle) {
- return this._clearInterval(handle);
+ return this.clearInterval(handle);
}
[_clearTimeout](handle) {
- return this._clearTimeout(handle);
+ return this.clearTimeout(handle);
}
[_setInterval](handler, timeout) {
- return this._setInterval(handler, timeout);
+ return this.setInterval(handler, timeout);
}
[_setTimeout](handler, timeout) {
- return this._setTimeout(handler, timeout);
+ return this.setTimeout(handler, timeout);
}
get [dartx.onError]() {
return html$.WorkerGlobalScope.errorEvent.forTarget(this);
@@ -36898,10 +36898,10 @@ dart_library.library('dart_sdk', null, /* Imports */[
return;
}
[_postMessage_1](message, transfer) {
- return this._postMessage_1(message, transfer);
+ return this.postMessage(message, transfer);
}
[_postMessage_2](message) {
- return this._postMessage_2(message);
+ return this.postMessage(message);
}
requestAnimationFrame(callback) {
return this.requestAnimationFrame(callback);
@@ -37049,7 +37049,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
dart.throw(new core.UnsupportedError("Not supported"));
}
[dartx.assertCondition](condition, arg) {
- return this.assertCondition(condition, arg);
+ return this.assert(condition, arg);
}
[dartx.timeline](title) {
return this.timeline(title);
@@ -37198,10 +37198,10 @@ dart_library.library('dart_sdk', null, /* Imports */[
return this[_request_2]();
}
[_request_1](options) {
- return this._request_1(options);
+ return this.request(options);
}
[_request_2]() {
- return this._request_2();
+ return this.request();
}
[dartx.requireUserMediation]() {
return this.requireUserMediation();
@@ -37248,10 +37248,10 @@ dart_library.library('dart_sdk', null, /* Imports */[
return;
}
[_postMessage_1](message, transfer) {
- return this._postMessage_1(message, transfer);
+ return this.postMessage(message, transfer);
}
[_postMessage_2](message) {
- return this._postMessage_2(message);
+ return this.postMessage(message);
}
};
dart.setSignature(html$.CrossOriginServiceWorkerClient, {
@@ -37282,7 +37282,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
return this.subtle;
}
[_getRandomValues](array) {
- return this._getRandomValues(array);
+ return this.getRandomValues(array);
}
};
dart.setSignature(html$.Crypto, {
@@ -40670,7 +40670,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
return this.getPropertyPriority(property);
}
[_getPropertyValue](property) {
- return this._getPropertyValue(property);
+ return this.getPropertyValue(property);
}
[dartx.item](index) {
return this.item(index);
@@ -42407,7 +42407,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
return this.detail;
}
[_initCustomEvent](type, bubbles, cancelable, detail) {
- return this._initCustomEvent(type, bubbles, cancelable, detail);
+ return this.initCustomEvent(type, bubbles, cancelable, detail);
}
};
dart.setSignature(html$.CustomEvent, {
@@ -42558,7 +42558,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
return this.getAsFile();
}
[_getAsString](callback) {
- return this._getAsString(callback);
+ return this.getAsString(callback);
}
[dartx.getAsString]() {
let completer = async.Completer$(core.String).new();
@@ -42568,7 +42568,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
return completer.future;
}
[dartx.getAsEntry]() {
- return this.getAsEntry();
+ return this.webkitGetAsEntry();
}
};
dart.setSignature(html$.DataTransferItem, {
@@ -42603,10 +42603,10 @@ dart_library.library('dart_sdk', null, /* Imports */[
return this.add(data_OR_file, type);
}
[dartx.addData](data, type) {
- return this.addData(data, type);
+ return this.add(data, type);
}
[dartx.addFile](file) {
- return this.addFile(file);
+ return this.add(file);
}
[dartx.clear]() {
return this.clear();
@@ -42656,10 +42656,10 @@ dart_library.library('dart_sdk', null, /* Imports */[
return;
}
[_postMessage_1](message, transfer) {
- return this._postMessage_1(message, transfer);
+ return this.postMessage(message, transfer);
}
[_postMessage_2](message) {
- return this._postMessage_2(message);
+ return this.postMessage(message);
}
get [dartx.onMessage]() {
return html$.DedicatedWorkerGlobalScope.messageEvent.forTarget(this);
@@ -42925,7 +42925,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
return this.gamma;
}
[_initDeviceOrientationEvent](type, bubbles, cancelable, alpha, beta, gamma, absolute) {
- return this._initDeviceOrientationEvent(type, bubbles, cancelable, alpha, beta, gamma, absolute);
+ return this.initDeviceOrientationEvent(type, bubbles, cancelable, alpha, beta, gamma, absolute);
}
};
dart.setSignature(html$.DeviceOrientationEvent, {
@@ -43064,7 +43064,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
return this.name;
}
[_copyTo](parent, opts) {
- return this._copyTo(parent, opts);
+ return this.copyTo(parent, opts);
}
[dartx.copyTo](parent, opts) {
let name = opts && 'name' in opts ? opts.name : null;
@@ -43077,7 +43077,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
return completer.future;
}
[_getMetadata](successCallback, errorCallback) {
- return this._getMetadata(successCallback, errorCallback);
+ return this.getMetadata(successCallback, errorCallback);
}
[dartx.getMetadata]() {
let completer = async.Completer$(html$.Metadata).new();
@@ -43089,7 +43089,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
return completer.future;
}
[_getParent](successCallback, errorCallback) {
- return this._getParent(successCallback, errorCallback);
+ return this.getParent(successCallback, errorCallback);
}
[dartx.getParent]() {
let completer = async.Completer$(html$.Entry).new();
@@ -43101,7 +43101,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
return completer.future;
}
[_moveTo](parent, opts) {
- return this._moveTo(parent, opts);
+ return this.moveTo(parent, opts);
}
[dartx.moveTo](parent, opts) {
let name = opts && 'name' in opts ? opts.name : null;
@@ -43114,7 +43114,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
return completer.future;
}
[_remove$](successCallback, errorCallback) {
- return this._remove(successCallback, errorCallback);
+ return this.remove(successCallback, errorCallback);
}
[dartx.remove]() {
let completer = async.Completer.new();
@@ -43126,7 +43126,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
return completer.future;
}
[dartx.toUrl]() {
- return this.toUrl();
+ return this.toURL();
}
};
dart.setSignature(html$.Entry, {
@@ -43199,16 +43199,16 @@ dart_library.library('dart_sdk', null, /* Imports */[
return;
}
[__getDirectory_1](path, options, successCallback, errorCallback) {
- return this.__getDirectory_1(path, options, successCallback, errorCallback);
+ return this.getDirectory(path, options, successCallback, errorCallback);
}
[__getDirectory_2](path, options, successCallback) {
- return this.__getDirectory_2(path, options, successCallback);
+ return this.getDirectory(path, options, successCallback);
}
[__getDirectory_3](path, options) {
- return this.__getDirectory_3(path, options);
+ return this.getDirectory(path, options);
}
[__getDirectory_4](path) {
- return this.__getDirectory_4(path);
+ return this.getDirectory(path);
}
[_getDirectory](path, opts) {
let options = opts && 'options' in opts ? opts.options : null;
@@ -43243,16 +43243,16 @@ dart_library.library('dart_sdk', null, /* Imports */[
return;
}
[__getFile_1](path, options, successCallback, errorCallback) {
- return this.__getFile_1(path, options, successCallback, errorCallback);
+ return this.getFile(path, options, successCallback, errorCallback);
}
[__getFile_2](path, options, successCallback) {
- return this.__getFile_2(path, options, successCallback);
+ return this.getFile(path, options, successCallback);
}
[__getFile_3](path, options) {
- return this.__getFile_3(path, options);
+ return this.getFile(path, options);
}
[__getFile_4](path) {
- return this.__getFile_4(path);
+ return this.getFile(path);
}
[_getFile](path, opts) {
let options = opts && 'options' in opts ? opts.options : null;
@@ -43265,7 +43265,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
return completer.future;
}
[_removeRecursively](successCallback, errorCallback) {
- return this._removeRecursively(successCallback, errorCallback);
+ return this.removeRecursively(successCallback, errorCallback);
}
[dartx.removeRecursively]() {
let completer = async.Completer.new();
@@ -43312,7 +43312,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
dart.throw(new core.UnsupportedError("Not supported"));
}
[_readEntries](successCallback, errorCallback) {
- return this._readEntries(successCallback, errorCallback);
+ return this.readEntries(successCallback, errorCallback);
}
[dartx.readEntries]() {
let completer = async.Completer$(core.List$(html$.Entry)).new();
@@ -43615,38 +43615,38 @@ dart_library.library('dart_sdk', null, /* Imports */[
return this.adoptNode(node);
}
[_caretRangeFromPoint](x, y) {
- return this._caretRangeFromPoint(x, y);
+ return this.caretRangeFromPoint(x, y);
}
[dartx.createDocumentFragment]() {
return this.createDocumentFragment();
}
[_createElement](localName_OR_tagName, typeExtension) {
- return this._createElement(localName_OR_tagName, typeExtension);
+ return this.createElement(localName_OR_tagName, typeExtension);
}
[_createElementNS](namespaceURI, qualifiedName, typeExtension) {
- return this._createElementNS(namespaceURI, qualifiedName, typeExtension);
+ return this.createElementNS(namespaceURI, qualifiedName, typeExtension);
}
[_createEvent](eventType) {
- return this._createEvent(eventType);
+ return this.createEvent(eventType);
}
[dartx.createRange]() {
return this.createRange();
}
[_createTextNode](data) {
- return this._createTextNode(data);
+ return this.createTextNode(data);
}
[_createTouch](window, target, identifier, pageX, pageY, screenX, screenY, radiusX, radiusY, rotationAngle, force) {
let target_1 = html$._convertDartToNative_EventTarget(target);
return this[_createTouch_1](window, target_1, identifier, pageX, pageY, screenX, screenY, radiusX, radiusY, rotationAngle, force);
}
[_createTouch_1](window, target, identifier, pageX, pageY, screenX, screenY, radiusX, radiusY, rotationAngle, force) {
- return this._createTouch_1(window, target, identifier, pageX, pageY, screenX, screenY, radiusX, radiusY, rotationAngle, force);
+ return this.createTouch(window, target, identifier, pageX, pageY, screenX, screenY, radiusX, radiusY, rotationAngle, force);
}
[_createTouchList](touches) {
- return this._createTouchList(touches);
+ return this.createTouchList(touches);
}
[_elementFromPoint](x, y) {
- return this._elementFromPoint(x, y);
+ return this.elementFromPoint(x, y);
}
[dartx.elementsFromPoint](x, y) {
return this.elementsFromPoint(x, y);
@@ -43661,7 +43661,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
return this.exitPointerLock();
}
[_getCssCanvasContext](contextId, name, width, height) {
- return this._getCssCanvasContext(contextId, name, width, height);
+ return this.getCSSCanvasContext(contextId, name, width, height);
}
[dartx.getElementsByClassName](classNames) {
return this.getElementsByClassName(classNames);
@@ -43694,7 +43694,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
return this.transformDocumentToTreeView(noStyleMessage);
}
[_webkitExitFullscreen]() {
- return this._webkitExitFullscreen();
+ return this.webkitExitFullscreen();
}
[dartx.getElementById](elementId) {
return this.getElementById(elementId);
@@ -43715,7 +43715,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
return this.querySelector(selectors);
}
[_querySelectorAll](selectors) {
- return this._querySelectorAll(selectors);
+ return this.querySelectorAll(selectors);
}
get [dartx.onAbort]() {
return html$.Element.abortEvent.forTarget(this);
@@ -44138,7 +44138,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
return this.querySelector(selectors);
}
[_querySelectorAll](selectors) {
- return this._querySelectorAll(selectors);
+ return this.querySelectorAll(selectors);
}
};
html$.DocumentFragment[dart.implements] = () => [html$.NonElementParentNode, html$.ParentNode];
@@ -44269,7 +44269,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
return this.createDocumentType(qualifiedName, publicId, systemId);
}
[dartx.createHtmlDocument](title) {
- return this.createHtmlDocument(title);
+ return this.createHTMLDocument(title);
}
[dartx.hasFeature]() {
return this.hasFeature();
@@ -46299,7 +46299,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
dart.throw(new core.UnsupportedError("Not supported"));
}
[_createWriter](successCallback, errorCallback) {
- return this._createWriter(successCallback, errorCallback);
+ return this.createWriter(successCallback, errorCallback);
}
[dartx.createWriter]() {
let completer = async.Completer$(html$.FileWriter).new();
@@ -46311,7 +46311,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
return completer.future;
}
[_file](successCallback, errorCallback) {
- return this._file(successCallback, errorCallback);
+ return this.file(successCallback, errorCallback);
}
[dartx.file]() {
let completer = async.Completer$(html$.File).new();
@@ -46476,7 +46476,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
return this.readAsArrayBuffer(blob);
}
[dartx.readAsDataUrl](blob) {
- return this.readAsDataUrl(blob);
+ return this.readAsDataURL(blob);
}
[dartx.readAsText](blob, label) {
return this.readAsText(blob, label);
@@ -46917,7 +46917,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
return this.append(name, value);
}
[dartx.appendBlob](name, value, filename) {
- return this.appendBlob(name, value, filename);
+ return this.append(name, value, filename);
}
[dartx.delete](name) {
return this.delete(name);
@@ -47071,7 +47071,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
return;
}
[_requestAutocomplete_1](details) {
- return this._requestAutocomplete_1(details);
+ return this.requestAutocomplete(details);
}
[dartx.reset]() {
return this.reset();
@@ -47323,7 +47323,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
dart.throw(new core.UnsupportedError("Not supported"));
}
[_clearWatch](watchID) {
- return this._clearWatch(watchID);
+ return this.clearWatch(watchID);
}
[_getCurrentPosition](successCallback, errorCallback, options) {
if (errorCallback === void 0) errorCallback = null;
@@ -47341,13 +47341,13 @@ dart_library.library('dart_sdk', null, /* Imports */[
return;
}
[_getCurrentPosition_1](successCallback, errorCallback, options) {
- return this._getCurrentPosition_1(successCallback, errorCallback, options);
+ return this.getCurrentPosition(successCallback, errorCallback, options);
}
[_getCurrentPosition_2](successCallback, errorCallback) {
- return this._getCurrentPosition_2(successCallback, errorCallback);
+ return this.getCurrentPosition(successCallback, errorCallback);
}
[_getCurrentPosition_3](successCallback) {
- return this._getCurrentPosition_3(successCallback);
+ return this.getCurrentPosition(successCallback);
}
[_watchPosition](successCallback, errorCallback, options) {
if (errorCallback === void 0) errorCallback = null;
@@ -47362,13 +47362,13 @@ dart_library.library('dart_sdk', null, /* Imports */[
return this[_watchPosition_3](successCallback);
}
[_watchPosition_1](successCallback, errorCallback, options) {
- return this._watchPosition_1(successCallback, errorCallback, options);
+ return this.watchPosition(successCallback, errorCallback, options);
}
[_watchPosition_2](successCallback, errorCallback) {
- return this._watchPosition_2(successCallback, errorCallback);
+ return this.watchPosition(successCallback, errorCallback);
}
[_watchPosition_3](successCallback) {
- return this._watchPosition_3(successCallback);
+ return this.watchPosition(successCallback);
}
};
dart.setSignature(html$.Geolocation, {
@@ -47873,7 +47873,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
return this.oldURL;
}
[_initHashChangeEvent](type, canBubble, cancelable, oldURL, newURL) {
- return this._initHashChangeEvent(type, canBubble, cancelable, oldURL, newURL);
+ return this.initHashChangeEvent(type, canBubble, cancelable, oldURL, newURL);
}
};
dart.setSignature(html$.HashChangeEvent, {
@@ -48061,10 +48061,10 @@ dart_library.library('dart_sdk', null, /* Imports */[
return;
}
[_pushState_1](data, title, url, options) {
- return this._pushState_1(data, title, url, options);
+ return this.pushState(data, title, url, options);
}
[_pushState_2](data, title, url) {
- return this._pushState_2(data, title, url);
+ return this.pushState(data, title, url);
}
[dartx.replaceState](data, title, url, options) {
if (options === void 0) options = null;
@@ -48079,10 +48079,10 @@ dart_library.library('dart_sdk', null, /* Imports */[
return;
}
[_replaceState_1](data, title, url, options) {
- return this._replaceState_1(data, title, url, options);
+ return this.replaceState(data, title, url, options);
}
[_replaceState_2](data, title, url) {
- return this._replaceState_2(data, title, url);
+ return this.replaceState(data, title, url);
}
};
html$.History[dart.implements] = () => [html$.HistoryBase];
@@ -48371,7 +48371,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
dart.throw(new core.UnsupportedError("Not supported"));
}
[_item](index) {
- return this._item(index);
+ return this.item(index);
}
};
dart.setSignature(html$.HtmlOptionsCollection, {
@@ -51074,7 +51074,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
return this[_getUserMedia_1](options_1);
}
[_getUserMedia_1](options) {
- return this._getUserMedia_1(options);
+ return this.getUserMedia(options);
}
};
dart.setSignature(html$.MediaDevices, {
@@ -51307,7 +51307,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
return this.remove();
}
[_update$](response) {
- return this._update(response);
+ return this.update(response);
}
};
dart.setSignature(html$.MediaKeySession, {
@@ -51343,7 +51343,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
return html_common.convertNativeToDart_Dictionary(this[_getConfiguration_1]());
}
[_getConfiguration_1]() {
- return this._getConfiguration_1();
+ return this.getConfiguration();
}
};
dart.setSignature(html$.MediaKeySystemAccess, {
@@ -51364,7 +51364,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
dart.throw(new core.UnsupportedError("Not supported"));
}
[_createSession](sessionType) {
- return this._createSession(sessionType);
+ return this.createSession(sessionType);
}
[dartx.setServerCertificate](serverCertificate) {
return this.setServerCertificate(serverCertificate);
@@ -52090,7 +52090,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
return this.source;
}
[_initMessageEvent](typeArg, canBubbleArg, cancelableArg, dataArg, originArg, lastEventIdArg, sourceArg, portsArg) {
- return this._initMessageEvent(typeArg, canBubbleArg, cancelableArg, dataArg, originArg, lastEventIdArg, sourceArg, portsArg);
+ return this.initMessageEvent(typeArg, canBubbleArg, cancelableArg, dataArg, originArg, lastEventIdArg, sourceArg, portsArg);
}
};
dart.setSignature(html$.MessageEvent, {
@@ -52132,10 +52132,10 @@ dart_library.library('dart_sdk', null, /* Imports */[
return;
}
[_postMessage_1](message, transfer) {
- return this._postMessage_1(message, transfer);
+ return this.postMessage(message, transfer);
}
[_postMessage_2](message) {
- return this._postMessage_2(message);
+ return this.postMessage(message);
}
[dartx.start]() {
return this.start();
@@ -52823,7 +52823,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
return;
}
[_initMouseEvent_1](type, bubbles, cancelable, view, detail, screenX, screenY, clientX, clientY, ctrlKey, altKey, shiftKey, metaKey, button, relatedTarget) {
- return this._initMouseEvent_1(type, bubbles, cancelable, view, detail, screenX, screenY, clientX, clientY, ctrlKey, altKey, shiftKey, metaKey, button, relatedTarget);
+ return this.initMouseEvent(type, bubbles, cancelable, view, detail, screenX, screenY, clientX, clientY, ctrlKey, altKey, shiftKey, metaKey, button, relatedTarget);
}
get [dartx.client]() {
return new (math.Point$(core.num))(this[_clientX], this[_clientY]);
@@ -52891,7 +52891,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
return;
}
[_observe_1](target, options) {
- return this._observe_1(target, options);
+ return this.observe(target, options);
}
[dartx.takeRecords]() {
return this.takeRecords();
@@ -52933,7 +52933,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
return list;
}
[_call](target, options) {
- return this._call(target, options);
+ return this.observe(target, options);
}
static new(callback) {
0;
@@ -53076,7 +53076,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
}
}
[_getUserMedia](options, success, error) {
- return this._getUserMedia(options, success, error);
+ return this.getUserMedia(options, success, error);
}
static _() {
dart.throw(new core.UnsupportedError("Not supported"));
@@ -53156,10 +53156,10 @@ dart_library.library('dart_sdk', null, /* Imports */[
return this[_requestMidiAccess_2]();
}
[_requestMidiAccess_1](options) {
- return this._requestMidiAccess_1(options);
+ return this.requestMIDIAccess(options);
}
[_requestMidiAccess_2]() {
- return this._requestMidiAccess_2();
+ return this.requestMIDIAccess();
}
[dartx.requestMediaKeySystemAccess](keySystem, supportedConfigurations) {
return this.requestMediaKeySystemAccess(keySystem, supportedConfigurations);
@@ -53673,7 +53673,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
return this[dartx.get](index);
}
[_item](index) {
- return this._item(index);
+ return this.item(index);
}
};
html$.NodeList[dart.implements] = () => [_js_helper.JavaScriptIndexingBehavior, core.List$(html$.Node)];
@@ -54618,10 +54618,10 @@ dart_library.library('dart_sdk', null, /* Imports */[
return this.setFrameTimingBufferSize(maxSize);
}
[dartx.clearResourceTimings]() {
- return this.clearResourceTimings();
+ return this.webkitClearResourceTimings();
}
[dartx.setResourceTimingBufferSize](maxSize) {
- return this.setResourceTimingBufferSize(maxSize);
+ return this.webkitSetResourceTimingBufferSize(maxSize);
}
get [dartx.onResourceTimingBufferFull]() {
return html$.Performance.resourceTimingBufferFullEvent.forTarget(this);
@@ -54946,10 +54946,10 @@ dart_library.library('dart_sdk', null, /* Imports */[
return this[_register_2]();
}
[_register_1](options) {
- return this._register_1(options);
+ return this.register(options);
}
[_register_2]() {
- return this._register_2();
+ return this.register();
}
};
dart.setSignature(html$.PeriodicSyncManager, {
@@ -55613,10 +55613,10 @@ dart_library.library('dart_sdk', null, /* Imports */[
return this[_permissionState_2]();
}
[_permissionState_1](options) {
- return this._permissionState_1(options);
+ return this.permissionState(options);
}
[_permissionState_2]() {
- return this._permissionState_2();
+ return this.permissionState();
}
[dartx.subscribe](options) {
if (options === void 0) options = null;
@@ -55627,10 +55627,10 @@ dart_library.library('dart_sdk', null, /* Imports */[
return this[_subscribe_2]();
}
[_subscribe_1](options) {
- return this._subscribe_1(options);
+ return this.subscribe(options);
}
[_subscribe_2]() {
- return this._subscribe_2();
+ return this.subscribe();
}
};
dart.setSignature(html$.PushManager, {
@@ -56119,16 +56119,16 @@ dart_library.library('dart_sdk', null, /* Imports */[
return this.send(data);
}
[dartx.sendBlob](data) {
- return this.sendBlob(data);
+ return this.send(data);
}
[dartx.sendByteBuffer](data) {
- return this.sendByteBuffer(data);
+ return this.send(data);
}
[dartx.sendString](data) {
- return this.sendString(data);
+ return this.send(data);
}
[dartx.sendTypedData](data) {
- return this.sendTypedData(data);
+ return this.send(data);
}
get [dartx.onClose]() {
return html$.RtcDataChannel.closeEvent.forTarget(this);
@@ -56215,7 +56215,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
return this.track;
}
[dartx.insertDtmf](tones, duration, interToneGap) {
- return this.insertDtmf(tones, duration, interToneGap);
+ return this.insertDTMF(tones, duration, interToneGap);
}
get [dartx.onToneChange]() {
return html$.RtcDtmfSender.toneChangeEvent.forTarget(this);
@@ -56440,10 +56440,10 @@ dart_library.library('dart_sdk', null, /* Imports */[
return;
}
[_addStream_1](stream, mediaConstraints) {
- return this._addStream_1(stream, mediaConstraints);
+ return this.addStream(stream, mediaConstraints);
}
[_addStream_2](stream) {
- return this._addStream_2(stream);
+ return this.addStream(stream);
}
[dartx.close]() {
return this.close();
@@ -56460,13 +56460,13 @@ dart_library.library('dart_sdk', null, /* Imports */[
return;
}
[_createAnswer_1](successCallback, failureCallback, mediaConstraints) {
- return this._createAnswer_1(successCallback, failureCallback, mediaConstraints);
+ return this.createAnswer(successCallback, failureCallback, mediaConstraints);
}
[_createAnswer_2](successCallback, failureCallback) {
- return this._createAnswer_2(successCallback, failureCallback);
+ return this.createAnswer(successCallback, failureCallback);
}
[dartx.createDtmfSender](track) {
- return this.createDtmfSender(track);
+ return this.createDTMFSender(track);
}
[dartx.createDataChannel](label, options) {
if (options === void 0) options = null;
@@ -56477,10 +56477,10 @@ dart_library.library('dart_sdk', null, /* Imports */[
return this[_createDataChannel_2](label);
}
[_createDataChannel_1](label, options) {
- return this._createDataChannel_1(label, options);
+ return this.createDataChannel(label, options);
}
[_createDataChannel_2](label) {
- return this._createDataChannel_2(label);
+ return this.createDataChannel(label);
}
[_createOffer](successCallback, failureCallback, rtcOfferOptions) {
if (failureCallback === void 0) failureCallback = null;
@@ -56494,10 +56494,10 @@ dart_library.library('dart_sdk', null, /* Imports */[
return;
}
[_createOffer_1](successCallback, failureCallback, rtcOfferOptions) {
- return this._createOffer_1(successCallback, failureCallback, rtcOfferOptions);
+ return this.createOffer(successCallback, failureCallback, rtcOfferOptions);
}
[_createOffer_2](successCallback, failureCallback) {
- return this._createOffer_2(successCallback, failureCallback);
+ return this.createOffer(successCallback, failureCallback);
}
[dartx.getLocalStreams]() {
return this.getLocalStreams();
@@ -56506,7 +56506,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
return this.getRemoteStreams();
}
[_getStats](successCallback, selector) {
- return this._getStats(successCallback, selector);
+ return this.getStats(successCallback, selector);
}
[dartx.getStreamById](streamId) {
return this.getStreamById(streamId);
@@ -56515,7 +56515,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
return this.removeStream(stream);
}
[_setLocalDescription](description, successCallback, failureCallback) {
- return this._setLocalDescription(description, successCallback, failureCallback);
+ return this.setLocalDescription(description, successCallback, failureCallback);
}
[dartx.setLocalDescription](description) {
let completer = async.Completer.new();
@@ -56527,7 +56527,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
return completer.future;
}
[_setRemoteDescription](description, successCallback, failureCallback) {
- return this._setRemoteDescription(description, successCallback, failureCallback);
+ return this.setRemoteDescription(description, successCallback, failureCallback);
}
[dartx.setRemoteDescription](description) {
let completer = async.Completer.new();
@@ -56556,13 +56556,13 @@ dart_library.library('dart_sdk', null, /* Imports */[
return;
}
[_updateIce_1](configuration, mediaConstraints) {
- return this._updateIce_1(configuration, mediaConstraints);
+ return this.updateIce(configuration, mediaConstraints);
}
[_updateIce_2](configuration) {
- return this._updateIce_2(configuration);
+ return this.updateIce(configuration);
}
[_updateIce_3]() {
- return this._updateIce_3();
+ return this.updateIce();
}
get [dartx.onAddStream]() {
return html$.RtcPeerConnection.addStreamEvent.forTarget(this);
@@ -57413,10 +57413,10 @@ dart_library.library('dart_sdk', null, /* Imports */[
return;
}
[_postMessage_1](message, transfer) {
- return this._postMessage_1(message, transfer);
+ return this.postMessage(message, transfer);
}
[_postMessage_2](message) {
- return this._postMessage_2(message);
+ return this.postMessage(message);
}
};
dart.setSignature(html$.ServicePort, {
@@ -57444,17 +57444,17 @@ dart_library.library('dart_sdk', null, /* Imports */[
return this[_connect_2](url);
}
[_connect_1](url, options) {
- return this._connect_1(url, options);
+ return this.connect(url, options);
}
[_connect_2](url) {
- return this._connect_2(url);
+ return this.connect(url);
}
match(options) {
let options_1 = html_common.convertDartToNative_Dictionary(options);
return this[_match_1](options_1);
}
[_match_1](options) {
- return this._match_1(options);
+ return this.match(options);
}
matchAll(options) {
if (options === void 0) options = null;
@@ -57465,10 +57465,10 @@ dart_library.library('dart_sdk', null, /* Imports */[
return this[_matchAll_2]();
}
[_matchAll_1](options) {
- return this._matchAll_1(options);
+ return this.matchAll(options);
}
[_matchAll_2]() {
- return this._matchAll_2();
+ return this.matchAll();
}
get onMessage() {
return html$.ServicePortCollection.messageEvent.forTarget(this);
@@ -57561,10 +57561,10 @@ dart_library.library('dart_sdk', null, /* Imports */[
return this[_register_2](url);
}
[_register_1](url, options) {
- return this._register_1(url, options);
+ return this.register(url, options);
}
[_register_2](url) {
- return this._register_2(url);
+ return this.register(url);
}
get [dartx.onMessage]() {
return html$.ServiceWorkerContainer.messageEvent.forTarget(this);
@@ -57714,10 +57714,10 @@ dart_library.library('dart_sdk', null, /* Imports */[
return this[_getNotifications_2]();
}
[_getNotifications_1](filter) {
- return this._getNotifications_1(filter);
+ return this.getNotifications(filter);
}
[_getNotifications_2]() {
- return this._getNotifications_2();
+ return this.getNotifications();
}
[dartx.showNotification](title, options) {
if (options === void 0) options = null;
@@ -57728,10 +57728,10 @@ dart_library.library('dart_sdk', null, /* Imports */[
return this[_showNotification_2](title);
}
[_showNotification_1](title, options) {
- return this._showNotification_1(title, options);
+ return this.showNotification(title, options);
}
[_showNotification_2](title) {
- return this._showNotification_2(title);
+ return this.showNotification(title);
}
[dartx.unregister]() {
return this.unregister();
@@ -57828,7 +57828,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
return this.styleSheets;
}
[dartx.clone](deep) {
- return this.clone(deep);
+ return this.cloneNode(deep);
}
[dartx.elementFromPoint](x, y) {
return this.elementFromPoint(x, y);
@@ -58025,7 +58025,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
return this.appendStream(stream, maxSize);
}
[dartx.appendTypedData](data) {
- return this.appendTypedData(data);
+ return this.appendBuffer(data);
}
[dartx.remove](start, end) {
return this.remove(start, end);
@@ -59016,19 +59016,19 @@ dart_library.library('dart_sdk', null, /* Imports */[
return this.__setter__(index_OR_name, value);
}
[_clear$1]() {
- return this._clear();
+ return this.clear();
}
[_getItem](key) {
- return this._getItem(key);
+ return this.getItem(key);
}
[_key$](index) {
- return this._key(index);
+ return this.key(index);
}
[_removeItem](key) {
- return this._removeItem(key);
+ return this.removeItem(key);
}
[_setItem](key, data) {
- return this._setItem(key, data);
+ return this.setItem(key, data);
}
};
html$.Storage[dart.implements] = () => [core.Map$(core.String, core.String)];
@@ -59108,7 +59108,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
return this.url;
}
[_initStorageEvent](typeArg, canBubbleArg, cancelableArg, keyArg, oldValueArg, newValueArg, urlArg, storageAreaArg) {
- return this._initStorageEvent(typeArg, canBubbleArg, cancelableArg, keyArg, oldValueArg, newValueArg, urlArg, storageAreaArg);
+ return this.initStorageEvent(typeArg, canBubbleArg, cancelableArg, keyArg, oldValueArg, newValueArg, urlArg, storageAreaArg);
}
};
dart.setSignature(html$.StorageEvent, {
@@ -59292,10 +59292,10 @@ dart_library.library('dart_sdk', null, /* Imports */[
return this[_register_2]();
}
[_register_1](options) {
- return this._register_1(options);
+ return this.register(options);
}
[_register_2]() {
- return this._register_2();
+ return this.register();
}
};
dart.setSignature(html$.SyncManager, {
@@ -59487,7 +59487,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
return dart.as(tbody, html$.TableSectionElement);
}
[_nativeCreateTBody]() {
- return this._nativeCreateTBody();
+ return this.createTBody();
}
[dartx.createFragment](html, opts) {
let validator = opts && 'validator' in opts ? opts.validator : null;
@@ -59540,13 +59540,13 @@ dart_library.library('dart_sdk', null, /* Imports */[
this.tHead = value;
}
[_createCaption]() {
- return this._createCaption();
+ return this.createCaption();
}
[_createTFoot]() {
- return this._createTFoot();
+ return this.createTFoot();
}
[_createTHead]() {
- return this._createTHead();
+ return this.createTHead();
}
[dartx.deleteCaption]() {
return this.deleteCaption();
@@ -59561,7 +59561,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
return this.deleteTHead();
}
[_insertRow](index) {
- return this._insertRow(index);
+ return this.insertRow(index);
}
};
dart.defineNamedConstructor(html$.TableElement, 'created');
@@ -59650,7 +59650,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
return this.deleteCell(index);
}
[_insertCell](index) {
- return this._insertCell(index);
+ return this.insertCell(index);
}
};
dart.defineNamedConstructor(html$.TableRowElement, 'created');
@@ -59711,7 +59711,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
return this.deleteRow(index);
}
[_insertRow](index) {
- return this._insertRow(index);
+ return this.insertRow(index);
}
};
dart.defineNamedConstructor(html$.TableSectionElement, 'created');
@@ -60034,7 +60034,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
return this.data;
}
[_initTextEvent](typeArg, canBubbleArg, cancelableArg, viewArg, dataArg) {
- return this._initTextEvent(typeArg, canBubbleArg, cancelableArg, viewArg, dataArg);
+ return this.initTextEvent(typeArg, canBubbleArg, cancelableArg, viewArg, dataArg);
}
};
dart.setSignature(html$.TextEvent, {
@@ -60620,7 +60620,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
return this.touches;
}
[_initTouchEvent](touches, targetTouches, changedTouches, type, view, unused1, unused2, unused3, unused4, ctrlKey, altKey, shiftKey, metaKey) {
- return this._initTouchEvent(touches, targetTouches, changedTouches, type, view, unused1, unused2, unused3, unused4, ctrlKey, altKey, shiftKey, metaKey);
+ return this.initTouchEvent(touches, targetTouches, changedTouches, type, view, unused1, unused2, unused3, unused4, ctrlKey, altKey, shiftKey, metaKey);
}
static get supported() {
return html_common.Device.isEventTypeSupported('TouchEvent');
@@ -61469,10 +61469,10 @@ dart_library.library('dart_sdk', null, /* Imports */[
return this.getVideoPlaybackQuality();
}
[dartx.enterFullscreen]() {
- return this.enterFullscreen();
+ return this.webkitEnterFullscreen();
}
[dartx.exitFullscreen]() {
- return this.exitFullscreen();
+ return this.webkitExitFullscreen();
}
};
dart.defineNamedConstructor(html$.VideoElement, 'created');
@@ -61665,7 +61665,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
this.vertical = value;
}
[dartx.getCueAsHtml]() {
- return this.getCueAsHtml();
+ return this.getCueAsHTML();
}
};
dart.setSignature(html$.VttCue, {
@@ -61856,16 +61856,16 @@ dart_library.library('dart_sdk', null, /* Imports */[
return this.send(data);
}
[dartx.sendBlob](data) {
- return this.sendBlob(data);
+ return this.send(data);
}
[dartx.sendByteBuffer](data) {
- return this.sendByteBuffer(data);
+ return this.send(data);
}
[dartx.sendString](data) {
- return this.sendString(data);
+ return this.send(data);
}
[dartx.sendTypedData](data) {
- return this.sendTypedData(data);
+ return this.send(data);
}
get [dartx.onClose]() {
return html$.WebSocket.closeEvent.forTarget(this);
@@ -62013,13 +62013,13 @@ dart_library.library('dart_sdk', null, /* Imports */[
return !!this.initMouseScrollEvent;
}
[_initMouseScrollEvent](type, canBubble, cancelable, view, detail, screenX, screenY, clientX, clientY, ctrlKey, altKey, shiftKey, metaKey, button, relatedTarget, axis) {
- return this._initMouseScrollEvent(type, canBubble, cancelable, view, detail, screenX, screenY, clientX, clientY, ctrlKey, altKey, shiftKey, metaKey, button, relatedTarget, axis);
+ return this.initMouseScrollEvent(type, canBubble, cancelable, view, detail, screenX, screenY, clientX, clientY, ctrlKey, altKey, shiftKey, metaKey, button, relatedTarget, axis);
}
get [_hasInitWheelEvent]() {
return !!this.initWheelEvent;
}
[_initWheelEvent](eventType, canBubble, cancelable, view, detail, screenX, screenY, clientX, clientY, button, relatedTarget, modifiersList, deltaX, deltaY, deltaZ, deltaMode) {
- return this._initWheelEvent(eventType, canBubble, cancelable, view, detail, screenX, screenY, clientX, clientY, button, relatedTarget, modifiersList, deltaX, deltaY, deltaZ, deltaMode);
+ return this.initWheelEvent(eventType, canBubble, cancelable, view, detail, screenX, screenY, clientX, clientY, button, relatedTarget, modifiersList, deltaX, deltaY, deltaZ, deltaMode);
}
};
dart.setSignature(html$.WheelEvent, {
@@ -62263,10 +62263,10 @@ dart_library.library('dart_sdk', null, /* Imports */[
this[_cancelAnimationFrame](id);
}
[_requestAnimationFrame](callback) {
- return this._requestAnimationFrame(callback);
+ return this.requestAnimationFrame(callback);
}
[_cancelAnimationFrame](id) {
- return this._cancelAnimationFrame(id);
+ return this.cancelAnimationFrame(id);
}
[_ensureRequestAnimationFrame]() {
if (!!(this.requestAnimationFrame && this.cancelAnimationFrame)) return;
@@ -62460,10 +62460,10 @@ dart_library.library('dart_sdk', null, /* Imports */[
dart.throw(new core.ArgumentError("Incorrect number or type of arguments"));
}
[__getter___1](index) {
- return this.__getter___1(index);
+ return this.__getter__(index);
}
[__getter___2](name) {
- return this.__getter___2(name);
+ return this.__getter__(name);
}
[dartx.alert](message) {
return this.alert(message);
@@ -62483,19 +62483,19 @@ dart_library.library('dart_sdk', null, /* Imports */[
return this[_fetch_2](input);
}
[_fetch_1](input, init) {
- return this._fetch_1(input, init);
+ return this.fetch(input, init);
}
[_fetch_2](input) {
- return this._fetch_2(input);
+ return this.fetch(input);
}
[dartx.find](string, caseSensitive, backwards, wrap, wholeWord, searchInFrames, showDialog) {
return this.find(string, caseSensitive, backwards, wrap, wholeWord, searchInFrames, showDialog);
}
[_getComputedStyle](elt, pseudoElt) {
- return this._getComputedStyle(elt, pseudoElt);
+ return this.getComputedStyle(elt, pseudoElt);
}
[dartx.getMatchedCssRules](element, pseudoElement) {
- return this.getMatchedCssRules(element, pseudoElement);
+ return this.getMatchedCSSRules(element, pseudoElement);
}
[dartx.getSelection]() {
return this.getSelection();
@@ -62507,7 +62507,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
return this.moveBy(x, y);
}
[_moveTo](x, y) {
- return this._moveTo(x, y);
+ return this.moveTo(x, y);
}
[dartx.openDatabase](name, version, displayName, estimatedSize, creationCallback) {
return this.openDatabase(name, version, displayName, estimatedSize, creationCallback);
@@ -62524,10 +62524,10 @@ dart_library.library('dart_sdk', null, /* Imports */[
return;
}
[_postMessage_1](message, targetOrigin, transfer) {
- return this._postMessage_1(message, targetOrigin, transfer);
+ return this.postMessage(message, targetOrigin, transfer);
}
[_postMessage_2](message, targetOrigin) {
- return this._postMessage_2(message, targetOrigin);
+ return this.postMessage(message, targetOrigin);
}
[dartx.print]() {
return this.print();
@@ -62567,19 +62567,19 @@ dart_library.library('dart_sdk', null, /* Imports */[
dart.throw(new core.ArgumentError("Incorrect number or type of arguments"));
}
[_scroll_1]() {
- return this._scroll_1();
+ return this.scroll();
}
[_scroll_2](options) {
- return this._scroll_2(options);
+ return this.scroll(options);
}
[_scroll_3](x, y) {
- return this._scroll_3(x, y);
+ return this.scroll(x, y);
}
[_scroll_4](x, y) {
- return this._scroll_4(x, y);
+ return this.scroll(x, y);
}
[_scroll_5](x, y, scrollOptions) {
- return this._scroll_5(x, y, scrollOptions);
+ return this.scroll(x, y, scrollOptions);
}
[dartx.scrollBy](options_OR_x, y, scrollOptions) {
if (options_OR_x === void 0) options_OR_x = null;
@@ -62610,19 +62610,19 @@ dart_library.library('dart_sdk', null, /* Imports */[
dart.throw(new core.ArgumentError("Incorrect number or type of arguments"));
}
[_scrollBy_1]() {
- return this._scrollBy_1();
+ return this.scrollBy();
}
[_scrollBy_2](options) {
- return this._scrollBy_2(options);
+ return this.scrollBy(options);
}
[_scrollBy_3](x, y) {
- return this._scrollBy_3(x, y);
+ return this.scrollBy(x, y);
}
[_scrollBy_4](x, y) {
- return this._scrollBy_4(x, y);
+ return this.scrollBy(x, y);
}
[_scrollBy_5](x, y, scrollOptions) {
- return this._scrollBy_5(x, y, scrollOptions);
+ return this.scrollBy(x, y, scrollOptions);
}
[dartx.scrollTo](options_OR_x, y, scrollOptions) {
if (options_OR_x === void 0) options_OR_x = null;
@@ -62653,25 +62653,25 @@ dart_library.library('dart_sdk', null, /* Imports */[
dart.throw(new core.ArgumentError("Incorrect number or type of arguments"));
}
[_scrollTo_1]() {
- return this._scrollTo_1();
+ return this.scrollTo();
}
[_scrollTo_2](options) {
- return this._scrollTo_2(options);
+ return this.scrollTo(options);
}
[_scrollTo_3](x, y) {
- return this._scrollTo_3(x, y);
+ return this.scrollTo(x, y);
}
[_scrollTo_4](x, y) {
- return this._scrollTo_4(x, y);
+ return this.scrollTo(x, y);
}
[_scrollTo_5](x, y, scrollOptions) {
- return this._scrollTo_5(x, y, scrollOptions);
+ return this.scrollTo(x, y, scrollOptions);
}
[dartx.stop]() {
return this.stop();
}
[__requestFileSystem](type, size, successCallback, errorCallback) {
- return this.__requestFileSystem(type, size, successCallback, errorCallback);
+ return this.webkitRequestFileSystem(type, size, successCallback, errorCallback);
}
[_requestFileSystem](type, size) {
let completer = async.Completer$(html$.FileSystem).new();
@@ -62683,7 +62683,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
return completer.future;
}
[_resolveLocalFileSystemUrl](url, successCallback, errorCallback) {
- return this._resolveLocalFileSystemUrl(url, successCallback, errorCallback);
+ return this.webkitResolveLocalFileSystemURL(url, successCallback, errorCallback);
}
[dartx.resolveLocalFileSystemUrl](url) {
let completer = async.Completer$(html$.Entry).new();
@@ -62701,22 +62701,22 @@ dart_library.library('dart_sdk', null, /* Imports */[
return this.btoa(btoa);
}
[_setInterval_String](handler, timeout, arguments$) {
- return this._setInterval_String(handler, timeout, arguments$);
+ return this.setInterval(handler, timeout, arguments$);
}
[_setTimeout_String](handler, timeout, arguments$) {
- return this._setTimeout_String(handler, timeout, arguments$);
+ return this.setTimeout(handler, timeout, arguments$);
}
[_clearInterval](handle) {
- return this._clearInterval(handle);
+ return this.clearInterval(handle);
}
[_clearTimeout](handle) {
- return this._clearTimeout(handle);
+ return this.clearTimeout(handle);
}
[_setInterval](handler, timeout) {
- return this._setInterval(handler, timeout);
+ return this.setInterval(handler, timeout);
}
[_setTimeout](handler, timeout) {
- return this._setTimeout(handler, timeout);
+ return this.setTimeout(handler, timeout);
}
get [dartx.onContentLoaded]() {
return html$.Window.contentLoadedEvent.forTarget(this);
@@ -63359,10 +63359,10 @@ dart_library.library('dart_sdk', null, /* Imports */[
return;
}
[_postMessage_1](message, transfer) {
- return this._postMessage_1(message, transfer);
+ return this.postMessage(message, transfer);
}
[_postMessage_2](message) {
- return this._postMessage_2(message);
+ return this.postMessage(message);
}
[dartx.terminate]() {
return this.terminate();
@@ -63454,10 +63454,10 @@ dart_library.library('dart_sdk', null, /* Imports */[
return this.now();
}
[dartx.clearResourceTimings]() {
- return this.clearResourceTimings();
+ return this.webkitClearResourceTimings();
}
[dartx.setResourceTimingBufferSize](maxSize) {
- return this.setResourceTimingBufferSize(maxSize);
+ return this.webkitSetResourceTimingBufferSize(maxSize);
}
};
dart.setSignature(html$.WorkerPerformance, {
@@ -63542,7 +63542,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
dart.throw(new core.UnsupportedError("Not supported"));
}
[dartx.lookupNamespaceUri](prefix) {
- return this.lookupNamespaceUri(prefix);
+ return this.lookupNamespaceURI(prefix);
}
};
dart.setSignature(html$.XPathNSResolver, {
@@ -64291,7 +64291,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
dart.throw(new core.UnsupportedError("Not supported"));
}
[_item](index) {
- return this._item(index);
+ return this.item(index);
}
};
dart.setSignature(html$._HTMLAllCollection, {
@@ -69555,10 +69555,10 @@ dart_library.library('dart_sdk', null, /* Imports */[
return this.getBBox();
}
[dartx.getCtm]() {
- return this.getCtm();
+ return this.getCTM();
}
[dartx.getScreenCtm]() {
- return this.getScreenCtm();
+ return this.getScreenCTM();
}
[dartx.getTransformToElement](element) {
return this.getTransformToElement(element);
@@ -72748,61 +72748,61 @@ dart_library.library('dart_sdk', null, /* Imports */[
return this.pathSegList;
}
[dartx.createSvgPathSegArcAbs](x, y, r1, r2, angle, largeArcFlag, sweepFlag) {
- return this.createSvgPathSegArcAbs(x, y, r1, r2, angle, largeArcFlag, sweepFlag);
+ return this.createSVGPathSegArcAbs(x, y, r1, r2, angle, largeArcFlag, sweepFlag);
}
[dartx.createSvgPathSegArcRel](x, y, r1, r2, angle, largeArcFlag, sweepFlag) {
- return this.createSvgPathSegArcRel(x, y, r1, r2, angle, largeArcFlag, sweepFlag);
+ return this.createSVGPathSegArcRel(x, y, r1, r2, angle, largeArcFlag, sweepFlag);
}
[dartx.createSvgPathSegClosePath]() {
- return this.createSvgPathSegClosePath();
+ return this.createSVGPathSegClosePath();
}
[dartx.createSvgPathSegCurvetoCubicAbs](x, y, x1, y1, x2, y2) {
- return this.createSvgPathSegCurvetoCubicAbs(x, y, x1, y1, x2, y2);
+ return this.createSVGPathSegCurvetoCubicAbs(x, y, x1, y1, x2, y2);
}
[dartx.createSvgPathSegCurvetoCubicRel](x, y, x1, y1, x2, y2) {
- return this.createSvgPathSegCurvetoCubicRel(x, y, x1, y1, x2, y2);
+ return this.createSVGPathSegCurvetoCubicRel(x, y, x1, y1, x2, y2);
}
[dartx.createSvgPathSegCurvetoCubicSmoothAbs](x, y, x2, y2) {
- return this.createSvgPathSegCurvetoCubicSmoothAbs(x, y, x2, y2);
+ return this.createSVGPathSegCurvetoCubicSmoothAbs(x, y, x2, y2);
}
[dartx.createSvgPathSegCurvetoCubicSmoothRel](x, y, x2, y2) {
- return this.createSvgPathSegCurvetoCubicSmoothRel(x, y, x2, y2);
+ return this.createSVGPathSegCurvetoCubicSmoothRel(x, y, x2, y2);
}
[dartx.createSvgPathSegCurvetoQuadraticAbs](x, y, x1, y1) {
- return this.createSvgPathSegCurvetoQuadraticAbs(x, y, x1, y1);
+ return this.createSVGPathSegCurvetoQuadraticAbs(x, y, x1, y1);
}
[dartx.createSvgPathSegCurvetoQuadraticRel](x, y, x1, y1) {
- return this.createSvgPathSegCurvetoQuadraticRel(x, y, x1, y1);
+ return this.createSVGPathSegCurvetoQuadraticRel(x, y, x1, y1);
}
[dartx.createSvgPathSegCurvetoQuadraticSmoothAbs](x, y) {
- return this.createSvgPathSegCurvetoQuadraticSmoothAbs(x, y);
+ return this.createSVGPathSegCurvetoQuadraticSmoothAbs(x, y);
}
[dartx.createSvgPathSegCurvetoQuadraticSmoothRel](x, y) {
- return this.createSvgPathSegCurvetoQuadraticSmoothRel(x, y);
+ return this.createSVGPathSegCurvetoQuadraticSmoothRel(x, y);
}
[dartx.createSvgPathSegLinetoAbs](x, y) {
- return this.createSvgPathSegLinetoAbs(x, y);
+ return this.createSVGPathSegLinetoAbs(x, y);
}
[dartx.createSvgPathSegLinetoHorizontalAbs](x) {
- return this.createSvgPathSegLinetoHorizontalAbs(x);
+ return this.createSVGPathSegLinetoHorizontalAbs(x);
}
[dartx.createSvgPathSegLinetoHorizontalRel](x) {
- return this.createSvgPathSegLinetoHorizontalRel(x);
+ return this.createSVGPathSegLinetoHorizontalRel(x);
}
[dartx.createSvgPathSegLinetoRel](x, y) {
- return this.createSvgPathSegLinetoRel(x, y);
+ return this.createSVGPathSegLinetoRel(x, y);
}
[dartx.createSvgPathSegLinetoVerticalAbs](y) {
- return this.createSvgPathSegLinetoVerticalAbs(y);
+ return this.createSVGPathSegLinetoVerticalAbs(y);
}
[dartx.createSvgPathSegLinetoVerticalRel](y) {
- return this.createSvgPathSegLinetoVerticalRel(y);
+ return this.createSVGPathSegLinetoVerticalRel(y);
}
[dartx.createSvgPathSegMovetoAbs](x, y) {
- return this.createSvgPathSegMovetoAbs(x, y);
+ return this.createSVGPathSegMovetoAbs(x, y);
}
[dartx.createSvgPathSegMovetoRel](x, y) {
- return this.createSvgPathSegMovetoRel(x, y);
+ return this.createSVGPathSegMovetoRel(x, y);
}
[dartx.getPathSegAtLength](distance) {
return this.getPathSegAtLength(distance);
@@ -74462,28 +74462,28 @@ dart_library.library('dart_sdk', null, /* Imports */[
return this.checkIntersection(element, rect);
}
[dartx.createSvgAngle]() {
- return this.createSvgAngle();
+ return this.createSVGAngle();
}
[dartx.createSvgLength]() {
- return this.createSvgLength();
+ return this.createSVGLength();
}
[dartx.createSvgMatrix]() {
- return this.createSvgMatrix();
+ return this.createSVGMatrix();
}
[dartx.createSvgNumber]() {
- return this.createSvgNumber();
+ return this.createSVGNumber();
}
[dartx.createSvgPoint]() {
- return this.createSvgPoint();
+ return this.createSVGPoint();
}
[dartx.createSvgRect]() {
- return this.createSvgRect();
+ return this.createSVGRect();
}
[dartx.createSvgTransform]() {
- return this.createSvgTransform();
+ return this.createSVGTransform();
}
[dartx.createSvgTransformFromMatrix](matrix) {
- return this.createSvgTransformFromMatrix(matrix);
+ return this.createSVGTransformFromMatrix(matrix);
}
[dartx.deselectAll]() {
return this.deselectAll();
@@ -75021,7 +75021,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
return this.consolidate();
}
[dartx.createSvgTransformFromMatrix](matrix) {
- return this.createSvgTransformFromMatrix(matrix);
+ return this.createSVGTransformFromMatrix(matrix);
}
[dartx.getItem](index) {
return this.getItem(index);
@@ -75397,7 +75397,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
return this.numberOfOutputs;
}
[_connect](destination, output, input) {
- return this._connect(destination, output, input);
+ return this.connect(destination, output, input);
}
[dartx.disconnect](output) {
return this.disconnect(output);
@@ -75712,7 +75712,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
return this.createWaveShaper();
}
[_decodeAudioData](audioData, successCallback, errorCallback) {
- return this._decodeAudioData(audioData, successCallback, errorCallback);
+ return this.decodeAudioData(audioData, successCallback, errorCallback);
}
[dartx.startRendering]() {
return this.startRendering();
@@ -76594,22 +76594,22 @@ dart_library.library('dart_sdk', null, /* Imports */[
return this.blendFuncSeparate(srcRGB, dstRGB, srcAlpha, dstAlpha);
}
[dartx.bufferByteData](target, data, usage) {
- return this.bufferByteData(target, data, usage);
+ return this.bufferData(target, data, usage);
}
[dartx.bufferData](target, data_OR_size, usage) {
return this.bufferData(target, data_OR_size, usage);
}
[dartx.bufferDataTyped](target, data, usage) {
- return this.bufferDataTyped(target, data, usage);
+ return this.bufferData(target, data, usage);
}
[dartx.bufferSubByteData](target, offset, data) {
- return this.bufferSubByteData(target, offset, data);
+ return this.bufferSubData(target, offset, data);
}
[dartx.bufferSubData](target, offset, data) {
return this.bufferSubData(target, offset, data);
}
[dartx.bufferSubDataTyped](target, offset, data) {
- return this.bufferSubDataTyped(target, offset, data);
+ return this.bufferSubData(target, offset, data);
}
[dartx.checkFramebufferStatus](target) {
return this.checkFramebufferStatus(target);
@@ -76750,7 +76750,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
return dart.as(html_common.convertNativeToDart_ContextAttributes(this[_getContextAttributes_1$]()), web_gl.ContextAttributes);
}
[_getContextAttributes_1$]() {
- return this._getContextAttributes_1();
+ return this.getContextAttributes();
}
[dartx.getError]() {
return this.getError();
@@ -76903,25 +76903,25 @@ dart_library.library('dart_sdk', null, /* Imports */[
dart.throw(new core.ArgumentError("Incorrect number or type of arguments"));
}
[_texImage2D_1](target, level, internalformat, width, height, border, format, type, pixels) {
- return this._texImage2D_1(target, level, internalformat, width, height, border, format, type, pixels);
+ return this.texImage2D(target, level, internalformat, width, height, border, format, type, pixels);
}
[_texImage2D_2](target, level, internalformat, format, type, pixels) {
- return this._texImage2D_2(target, level, internalformat, format, type, pixels);
+ return this.texImage2D(target, level, internalformat, format, type, pixels);
}
[_texImage2D_3](target, level, internalformat, format, type, image) {
- return this._texImage2D_3(target, level, internalformat, format, type, image);
+ return this.texImage2D(target, level, internalformat, format, type, image);
}
[_texImage2D_4](target, level, internalformat, format, type, canvas) {
- return this._texImage2D_4(target, level, internalformat, format, type, canvas);
+ return this.texImage2D(target, level, internalformat, format, type, canvas);
}
[_texImage2D_5](target, level, internalformat, format, type, video) {
- return this._texImage2D_5(target, level, internalformat, format, type, video);
+ return this.texImage2D(target, level, internalformat, format, type, video);
}
[dartx.texImage2DCanvas](target, level, internalformat, format, type, canvas) {
- return this.texImage2DCanvas(target, level, internalformat, format, type, canvas);
+ return this.texImage2D(target, level, internalformat, format, type, canvas);
}
[dartx.texImage2DImage](target, level, internalformat, format, type, image) {
- return this.texImage2DImage(target, level, internalformat, format, type, image);
+ return this.texImage2D(target, level, internalformat, format, type, image);
}
[dartx.texImage2DImageData](target, level, internalformat, format, type, pixels) {
let pixels_1 = html_common.convertDartToNative_ImageData(pixels);
@@ -76929,10 +76929,10 @@ dart_library.library('dart_sdk', null, /* Imports */[
return;
}
[_texImage2DImageData_1](target, level, internalformat, format, type, pixels) {
- return this._texImage2DImageData_1(target, level, internalformat, format, type, pixels);
+ return this.texImage2D(target, level, internalformat, format, type, pixels);
}
[dartx.texImage2DVideo](target, level, internalformat, format, type, video) {
- return this.texImage2DVideo(target, level, internalformat, format, type, video);
+ return this.texImage2D(target, level, internalformat, format, type, video);
}
[dartx.texParameterf](target, pname, param) {
return this.texParameterf(target, pname, param);
@@ -76967,25 +76967,25 @@ dart_library.library('dart_sdk', null, /* Imports */[
dart.throw(new core.ArgumentError("Incorrect number or type of arguments"));
}
[_texSubImage2D_1](target, level, xoffset, yoffset, width, height, format, type, pixels) {
- return this._texSubImage2D_1(target, level, xoffset, yoffset, width, height, format, type, pixels);
+ return this.texSubImage2D(target, level, xoffset, yoffset, width, height, format, type, pixels);
}
[_texSubImage2D_2](target, level, xoffset, yoffset, format, type, pixels) {
- return this._texSubImage2D_2(target, level, xoffset, yoffset, format, type, pixels);
+ return this.texSubImage2D(target, level, xoffset, yoffset, format, type, pixels);
}
[_texSubImage2D_3](target, level, xoffset, yoffset, format, type, image) {
- return this._texSubImage2D_3(target, level, xoffset, yoffset, format, type, image);
+ return this.texSubImage2D(target, level, xoffset, yoffset, format, type, image);
}
[_texSubImage2D_4](target, level, xoffset, yoffset, format, type, canvas) {
- return this._texSubImage2D_4(target, level, xoffset, yoffset, format, type, canvas);
+ return this.texSubImage2D(target, level, xoffset, yoffset, format, type, canvas);
}
[_texSubImage2D_5](target, level, xoffset, yoffset, format, type, video) {
- return this._texSubImage2D_5(target, level, xoffset, yoffset, format, type, video);
+ return this.texSubImage2D(target, level, xoffset, yoffset, format, type, video);
}
[dartx.texSubImage2DCanvas](target, level, xoffset, yoffset, format, type, canvas) {
- return this.texSubImage2DCanvas(target, level, xoffset, yoffset, format, type, canvas);
+ return this.texSubImage2D(target, level, xoffset, yoffset, format, type, canvas);
}
[dartx.texSubImage2DImage](target, level, xoffset, yoffset, format, type, image) {
- return this.texSubImage2DImage(target, level, xoffset, yoffset, format, type, image);
+ return this.texSubImage2D(target, level, xoffset, yoffset, format, type, image);
}
[dartx.texSubImage2DImageData](target, level, xoffset, yoffset, format, type, pixels) {
let pixels_1 = html_common.convertDartToNative_ImageData(pixels);
@@ -76993,10 +76993,10 @@ dart_library.library('dart_sdk', null, /* Imports */[
return;
}
[_texSubImage2DImageData_1](target, level, xoffset, yoffset, format, type, pixels) {
- return this._texSubImage2DImageData_1(target, level, xoffset, yoffset, format, type, pixels);
+ return this.texSubImage2D(target, level, xoffset, yoffset, format, type, pixels);
}
[dartx.texSubImage2DVideo](target, level, xoffset, yoffset, format, type, video) {
- return this.texSubImage2DVideo(target, level, xoffset, yoffset, format, type, video);
+ return this.texSubImage2D(target, level, xoffset, yoffset, format, type, video);
}
[dartx.uniform1f](location, x) {
return this.uniform1f(location, x);
@@ -77092,16 +77092,16 @@ dart_library.library('dart_sdk', null, /* Imports */[
return this.viewport(x, y, width, height);
}
[dartx.texImage2DUntyped](targetTexture, levelOfDetail, internalFormat, format, type, data) {
- return this.texImage2DUntyped(targetTexture, levelOfDetail, internalFormat, format, type, data);
+ return this.texImage2D(targetTexture, levelOfDetail, internalFormat, format, type, data);
}
[dartx.texImage2DTyped](targetTexture, levelOfDetail, internalFormat, width, height, border, format, type, data) {
- return this.texImage2DTyped(targetTexture, levelOfDetail, internalFormat, width, height, border, format, type, data);
+ return this.texImage2D(targetTexture, levelOfDetail, internalFormat, width, height, border, format, type, data);
}
[dartx.texSubImage2DUntyped](targetTexture, levelOfDetail, xOffset, yOffset, format, type, data) {
- return this.texSubImage2DUntyped(targetTexture, levelOfDetail, xOffset, yOffset, format, type, data);
+ return this.texSubImage2D(targetTexture, levelOfDetail, xOffset, yOffset, format, type, data);
}
[dartx.texSubImage2DTyped](targetTexture, levelOfDetail, xOffset, yOffset, width, height, border, format, type, data) {
- return this.texSubImage2DTyped(targetTexture, levelOfDetail, xOffset, yOffset, width, height, border, format, type, data);
+ return this.texSubImage2D(targetTexture, levelOfDetail, xOffset, yOffset, width, height, border, format, type, data);
}
};
web_gl.RenderingContext[dart.implements] = () => [html$.CanvasRenderingContext];
@@ -77915,13 +77915,13 @@ dart_library.library('dart_sdk', null, /* Imports */[
dart.throw(new core.UnsupportedError("Not supported"));
}
[dartx.drawArraysInstancedAngle](mode, first, count, primcount) {
- return this.drawArraysInstancedAngle(mode, first, count, primcount);
+ return this.drawArraysInstancedANGLE(mode, first, count, primcount);
}
[dartx.drawElementsInstancedAngle](mode, count, type, offset, primcount) {
- return this.drawElementsInstancedAngle(mode, count, type, offset, primcount);
+ return this.drawElementsInstancedANGLE(mode, count, type, offset, primcount);
}
[dartx.vertexAttribDivisorAngle](index, divisor) {
- return this.vertexAttribDivisorAngle(index, divisor);
+ return this.vertexAttribDivisorANGLE(index, divisor);
}
};
dart.setSignature(web_gl.AngleInstancedArrays, {
@@ -78122,7 +78122,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
dart.throw(new core.UnsupportedError("Not supported"));
}
[dartx.drawBuffersWebgl](buffers) {
- return this.drawBuffersWebgl(buffers);
+ return this.drawBuffersWEBGL(buffers);
}
};
dart.setSignature(web_gl.DrawBuffers, {
@@ -78305,16 +78305,16 @@ dart_library.library('dart_sdk', null, /* Imports */[
dart.throw(new core.UnsupportedError("Not supported"));
}
[dartx.bindVertexArray](arrayObject) {
- return this.bindVertexArray(arrayObject);
+ return this.bindVertexArrayOES(arrayObject);
}
[dartx.createVertexArray]() {
- return this.createVertexArray();
+ return this.createVertexArrayOES();
}
[dartx.deleteVertexArray](arrayObject) {
- return this.deleteVertexArray(arrayObject);
+ return this.deleteVertexArrayOES(arrayObject);
}
[dartx.isVertexArray](arrayObject) {
- return this.isVertexArray(arrayObject);
+ return this.isVertexArrayOES(arrayObject);
}
};
dart.setSignature(web_gl.OesVertexArrayObject, {
@@ -78572,7 +78572,7 @@ dart_library.library('dart_sdk', null, /* Imports */[
return html_common.convertNativeToDart_Dictionary(this[_item_1](index));
}
[_item_1](index) {
- return this._item_1(index);
+ return this.item(index);
}
};
web_sql.SqlResultSetRowList[dart.implements] = () => [core.List$(core.Map)];
« no previous file with comments | « no previous file | lib/src/compiler/js_interop.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698