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

Unified Diff: lib/dom/dom.dart

Issue 10542124: Roll IDL to multivm@603 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | lib/dom/frog/dom_frog.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/dom/dom.dart
diff --git a/lib/dom/dom.dart b/lib/dom/dom.dart
index 76bc51ca0a01f7de953dd45f4788c5cca53c0643..5c9b75f90395c49c156ab901aaffe044924ce139 100644
--- a/lib/dom/dom.dart
+++ b/lib/dom/dom.dart
@@ -1825,8 +1825,6 @@ interface Window extends EventTarget {
final NotificationCenter webkitNotifications;
- final StorageInfo webkitStorageInfo;
-
final DOMWindow window;
void addEventListener(String type, EventListener listener, [bool useCapture]);
@@ -1937,6 +1935,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
@@ -5158,6 +5158,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;
@@ -5182,9 +5184,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
@@ -6425,24 +6427,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;
@@ -9731,6 +9715,8 @@ interface ShadowRoot extends DocumentFragment default _ShadowRootFactoryProvider
String innerHTML;
+ bool resetStyleInheritance;
+
Element getElementById(String elementId);
NodeList getElementsByClassName(String className);
@@ -9991,43 +9977,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.
« no previous file with comments | « no previous file | lib/dom/frog/dom_frog.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698