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

Unified Diff: client/dom/generated/src/wrapping/_IDBFactoryWrappingImplementation.dart

Issue 8574040: Support DOMString[] and regenerate from IDL (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix Window.postMessage Created 9 years, 1 month 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
Index: client/dom/generated/src/wrapping/_IDBFactoryWrappingImplementation.dart
diff --git a/client/dom/generated/src/wrapping/_IDBFactoryWrappingImplementation.dart b/client/dom/generated/src/wrapping/_IDBFactoryWrappingImplementation.dart
index 864fbb48eb715392773beac9be9efea0fc793a20..ab18a67e1af94f8123d34c595306dc9836a021e3 100644
--- a/client/dom/generated/src/wrapping/_IDBFactoryWrappingImplementation.dart
+++ b/client/dom/generated/src/wrapping/_IDBFactoryWrappingImplementation.dart
@@ -11,6 +11,16 @@ class _IDBFactoryWrappingImplementation extends DOMWrapperBase implements IDBFac
return new _IDBFactoryWrappingImplementation();
}
+ int cmp(IDBKey first, IDBKey second) {
+ return _cmp(this, first, second);
+ }
+ static int _cmp(receiver, first, second) native;
+
+ IDBVersionChangeRequest deleteDatabase(String name) {
+ return _deleteDatabase(this, name);
+ }
+ static IDBVersionChangeRequest _deleteDatabase(receiver, name) native;
+
IDBRequest getDatabaseNames() {
return _getDatabaseNames(this);
}

Powered by Google App Engine
This is Rietveld 408576698