| Index: lib/dom/frog/dom_frog.dart
|
| diff --git a/lib/dom/frog/dom_frog.dart b/lib/dom/frog/dom_frog.dart
|
| index 9b0d6a7be1fff2177f80a4c8d4452e66bd9313c0..e70dd2272a14f82f208f995eed85a62400984399 100644
|
| --- a/lib/dom/frog/dom_frog.dart
|
| +++ b/lib/dom/frog/dom_frog.dart
|
| @@ -1373,8 +1373,6 @@ class _DOMWindowJs extends _EventTargetJs implements DOMWindow native "@*DOMWind
|
|
|
| final _NotificationCenterJs webkitNotifications;
|
|
|
| - final _StorageInfoJs webkitStorageInfo;
|
| -
|
| final _DOMWindowJs window;
|
|
|
| void addEventListener(String type, EventListener listener, [bool useCapture = null]) native;
|
| @@ -1474,6 +1472,8 @@ class _DataTransferItemJs extends _DOMTypeJs implements DataTransferItem native
|
| _BlobJs getAsFile() native;
|
|
|
| void getAsString([StringCallback callback = null]) native;
|
| +
|
| + _EntryJs webkitGetAsEntry() native;
|
| }
|
|
|
| class _DataTransferItemListJs extends _DOMTypeJs implements DataTransferItemList native "*DataTransferItemList" {
|
| @@ -4303,6 +4303,8 @@ class _IDBDatabaseExceptionJs extends _DOMTypeJs implements IDBDatabaseException
|
|
|
| static final int TRANSACTION_INACTIVE_ERR = 7;
|
|
|
| + static final int TYPE_ERR = 21;
|
| +
|
| static final int UNKNOWN_ERR = 1;
|
|
|
| static final int VER_ERR = 12;
|
| @@ -4322,9 +4324,9 @@ class _IDBFactoryJs extends _DOMTypeJs implements IDBFactory native "*IDBFactory
|
|
|
| _IDBVersionChangeRequestJs deleteDatabase(String name) native;
|
|
|
| - _IDBRequestJs getDatabaseNames() native;
|
| -
|
| _IDBRequestJs open(String name) native;
|
| +
|
| + _IDBRequestJs webkitGetDatabaseNames() native;
|
| }
|
|
|
| class _IDBIndexJs extends _DOMTypeJs implements IDBIndex native "*IDBIndex" {
|
| @@ -5722,19 +5724,6 @@ class _OfflineAudioCompletionEventJs extends _EventJs implements OfflineAudioCom
|
| final _AudioBufferJs renderedBuffer;
|
| }
|
|
|
| -class _OperationNotAllowedExceptionJs extends _DOMTypeJs implements OperationNotAllowedException native "*OperationNotAllowedException" {
|
| -
|
| - static final int NOT_ALLOWED_ERR = 1;
|
| -
|
| - final int code;
|
| -
|
| - final String message;
|
| -
|
| - final String name;
|
| -
|
| - String toString() native;
|
| -}
|
| -
|
| class _OscillatorJs extends _AudioSourceNodeJs implements Oscillator native "*Oscillator" {
|
|
|
| static final int CUSTOM = 4;
|
| @@ -9456,6 +9445,8 @@ class _ShadowRootJs extends _DocumentFragmentJs implements ShadowRoot native "*S
|
|
|
| String innerHTML;
|
|
|
| + bool resetStyleInheritance;
|
| +
|
| _ElementJs getElementById(String elementId) native;
|
|
|
| _NodeListJs getElementsByClassName(String className) native;
|
| @@ -9650,17 +9641,6 @@ class _StorageEventJs extends _EventJs implements StorageEvent native "*StorageE
|
| void initStorageEvent(String typeArg, bool canBubbleArg, bool cancelableArg, String keyArg, String oldValueArg, String newValueArg, String urlArg, _StorageJs storageAreaArg) native;
|
| }
|
|
|
| -class _StorageInfoJs extends _DOMTypeJs implements StorageInfo native "*StorageInfo" {
|
| -
|
| - static final int PERSISTENT = 1;
|
| -
|
| - static final int TEMPORARY = 0;
|
| -
|
| - void queryUsageAndQuota(int storageType, [StorageInfoUsageCallback usageCallback = null, StorageInfoErrorCallback errorCallback = null]) native;
|
| -
|
| - void requestQuota(int storageType, int newQuotaInBytes, [StorageInfoQuotaCallback quotaCallback = null, StorageInfoErrorCallback errorCallback = null]) native;
|
| -}
|
| -
|
| class _StyleMediaJs extends _DOMTypeJs implements StyleMedia native "*StyleMedia" {
|
|
|
| final String type;
|
| @@ -13814,8 +13794,6 @@ interface Window extends EventTarget {
|
|
|
| final NotificationCenter webkitNotifications;
|
|
|
| - final StorageInfo webkitStorageInfo;
|
| -
|
| final DOMWindow window;
|
|
|
| void addEventListener(String type, EventListener listener, [bool useCapture]);
|
| @@ -13926,6 +13904,8 @@ interface DataTransferItem {
|
| Blob getAsFile();
|
|
|
| void getAsString([StringCallback callback]);
|
| +
|
| + Entry webkitGetAsEntry();
|
| }
|
| // 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
|
| @@ -17147,6 +17127,8 @@ interface IDBDatabaseException {
|
|
|
| static final int TRANSACTION_INACTIVE_ERR = 7;
|
|
|
| + static final int TYPE_ERR = 21;
|
| +
|
| static final int UNKNOWN_ERR = 1;
|
|
|
| static final int VER_ERR = 12;
|
| @@ -17171,9 +17153,9 @@ interface IDBFactory {
|
|
|
| IDBVersionChangeRequest deleteDatabase(String name);
|
|
|
| - IDBRequest getDatabaseNames();
|
| -
|
| IDBRequest open(String name);
|
| +
|
| + IDBRequest webkitGetDatabaseNames();
|
| }
|
| // 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
|
| @@ -18414,24 +18396,6 @@ interface OfflineAudioCompletionEvent extends Event {
|
|
|
| // WARNING: Do not edit - generated code.
|
|
|
| -interface OperationNotAllowedException {
|
| -
|
| - static final int NOT_ALLOWED_ERR = 1;
|
| -
|
| - final int code;
|
| -
|
| - final String message;
|
| -
|
| - final String name;
|
| -
|
| - String toString();
|
| -}
|
| -// 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.
|
| -
|
| interface Oscillator extends AudioSourceNode {
|
|
|
| static final int CUSTOM = 4;
|
| @@ -21720,6 +21684,8 @@ interface ShadowRoot extends DocumentFragment default _ShadowRootFactoryProvider
|
|
|
| String innerHTML;
|
|
|
| + bool resetStyleInheritance;
|
| +
|
| Element getElementById(String elementId);
|
|
|
| NodeList getElementsByClassName(String className);
|
| @@ -21980,43 +21946,6 @@ interface StorageEvent extends Event {
|
|
|
| void initStorageEvent(String typeArg, bool canBubbleArg, bool cancelableArg, String keyArg, String oldValueArg, String newValueArg, String urlArg, Storage storageAreaArg);
|
| }
|
| -// 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.
|
| -
|
| -interface StorageInfo {
|
| -
|
| - static final int PERSISTENT = 1;
|
| -
|
| - static final int TEMPORARY = 0;
|
| -
|
| - void queryUsageAndQuota(int storageType, [StorageInfoUsageCallback usageCallback, StorageInfoErrorCallback errorCallback]);
|
| -
|
| - void requestQuota(int storageType, int newQuotaInBytes, [StorageInfoQuotaCallback quotaCallback, StorageInfoErrorCallback errorCallback]);
|
| -}
|
| -// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
|
| -// for details. All rights reserved. Use of this source code is governed by a
|
| -// BSD-style license that can be found in the LICENSE file.
|
| -
|
| -// WARNING: Do not edit - generated code.
|
| -
|
| -typedef bool StorageInfoErrorCallback(DOMException error);
|
| -// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
|
| -// for details. All rights reserved. Use of this source code is governed by a
|
| -// BSD-style license that can be found in the LICENSE file.
|
| -
|
| -// WARNING: Do not edit - generated code.
|
| -
|
| -typedef bool StorageInfoQuotaCallback(int grantedQuotaInBytes);
|
| -// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
|
| -// for details. All rights reserved. Use of this source code is governed by a
|
| -// BSD-style license that can be found in the LICENSE file.
|
| -
|
| -// WARNING: Do not edit - generated code.
|
| -
|
| -typedef bool StorageInfoUsageCallback(int currentUsageInBytes, int currentQuotaInBytes);
|
| // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
|
| // for details. All rights reserved. Use of this source code is governed by a
|
| // BSD-style license that can be found in the LICENSE file.
|
|
|