| Index: lib/dom/frog/dom_frog.dart
|
| diff --git a/lib/dom/frog/dom_frog.dart b/lib/dom/frog/dom_frog.dart
|
| index 309f0c10f6885faaad460f313402b6c2a9f47845..c5836eec517651124bea88bb216d999043c872ac 100644
|
| --- a/lib/dom/frog/dom_frog.dart
|
| +++ b/lib/dom/frog/dom_frog.dart
|
| @@ -11934,6 +11934,14 @@ class _XSLTProcessorJs extends _DOMTypeJs implements XSLTProcessor native "*XSLT
|
| // 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.
|
|
|
| +class _ArrayBufferFactoryProvider {
|
| + factory ArrayBuffer(int length) native
|
| + '''return new ArrayBuffer(length);''';
|
| +}
|
| +// 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.
|
| +
|
| class _BlobFactoryProvider {
|
| factory Blob(List blobParts, [String type, String endings]) native
|
| '''return new Blob(blobParts, type, endings);''';
|
| @@ -12206,7 +12214,9 @@ interface AbstractWorker extends EventTarget {
|
|
|
| // WARNING: Do not edit - generated code.
|
|
|
| -interface ArrayBuffer {
|
| +interface ArrayBuffer default _ArrayBufferFactoryProvider {
|
| +
|
| + ArrayBuffer(int length);
|
|
|
| final int byteLength;
|
|
|
|
|