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

Unified Diff: lib/dom/dom.dart

Issue 10831389: Roll IDL to mutlivm@775. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 4 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 | « lib/dom/dart2js/dom_dart2js.dart ('k') | lib/html/dart2js/html_dart2js.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 98a1f69558fe131c079d74faa052ad239d34e8a8..ee0de7e916aac8aaf2539f0d53e31a25cfe72ed3 100644
--- a/lib/dom/dom.dart
+++ b/lib/dom/dom.dart
@@ -2145,9 +2145,9 @@ interface DirectoryEntry extends Entry {
DirectoryReader createReader();
- void getDirectory(String path, [Object flags, EntryCallback successCallback, ErrorCallback errorCallback]);
+ void getDirectory(String path, [Map options, EntryCallback successCallback, ErrorCallback errorCallback]);
- void getFile(String path, [Object flags, EntryCallback successCallback, ErrorCallback errorCallback]);
+ void getFile(String path, [Map options, EntryCallback successCallback, ErrorCallback errorCallback]);
void removeRecursively(VoidCallback successCallback, [ErrorCallback errorCallback]);
}
@@ -2161,9 +2161,9 @@ interface DirectoryEntrySync extends EntrySync {
DirectoryReaderSync createReader();
- DirectoryEntrySync getDirectory(String path, Object flags);
+ DirectoryEntrySync getDirectory(String path, Map flags);
- FileEntrySync getFile(String path, Object flags);
+ FileEntrySync getFile(String path, Map flags);
void removeRecursively();
}
@@ -4285,8 +4285,6 @@ interface HTMLMediaElement extends HTMLElement {
final bool webkitHasClosedCaptions;
- final String webkitMediaSourceURL;
-
bool webkitPreservesPitch;
final int webkitVideoDecodedByteCount;
@@ -5213,7 +5211,7 @@ interface IDBFactory {
IDBVersionChangeRequest deleteDatabase(String name);
- IDBRequest open(String name);
+ IDBOpenDBRequest open(String name, [int version]);
IDBRequest webkitGetDatabaseNames();
}
@@ -5323,6 +5321,14 @@ interface IDBObjectStore {
// WARNING: Do not edit - generated code.
+interface IDBOpenDBRequest extends IDBRequest, EventTarget {
+}
+// 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 IDBRequest extends EventTarget {
final DOMError error;
@@ -5381,6 +5387,18 @@ interface IDBTransaction extends EventTarget {
// WARNING: Do not edit - generated code.
+interface IDBUpgradeNeededEvent extends Event {
+
+ final int newVersion;
+
+ final int oldVersion;
+}
+// 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 IDBVersionChangeEvent extends Event {
final String version;
@@ -6607,6 +6625,8 @@ interface OverflowEvent extends Event {
interface PagePopupController {
+ String localizeNumberString(String numberString);
+
void setValueAndClosePopup(int numberValue, String stringValue);
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -9874,6 +9894,8 @@ interface SourceBuffer {
final TimeRanges buffered;
+ num timestampOffset;
+
void abort();
void append(Uint8Array data);
@@ -10629,7 +10651,7 @@ interface ValidityState {
// WARNING: Do not edit - generated code.
-typedef void VoidCallback();
+typedef bool VoidCallback();
// 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.
« no previous file with comments | « lib/dom/dart2js/dom_dart2js.dart ('k') | lib/html/dart2js/html_dart2js.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698