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

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

Issue 9106002: Revert "Revert "Refresh dart:dom"" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: fix dartc issues Created 8 years, 12 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
Index: client/dom/generated/src/wrapping/_IDBObjectStoreWrappingImplementation.dart
diff --git a/client/dom/generated/src/wrapping/_IDBObjectStoreWrappingImplementation.dart b/client/dom/generated/src/wrapping/_IDBObjectStoreWrappingImplementation.dart
index 48dc37f10b90af539e4f2e5a6ca0e8b8f1e61ae7..5aa02627e889e05e8dd482812987405b1df5aabb 100644
--- a/client/dom/generated/src/wrapping/_IDBObjectStoreWrappingImplementation.dart
+++ b/client/dom/generated/src/wrapping/_IDBObjectStoreWrappingImplementation.dart
@@ -35,6 +35,16 @@ class _IDBObjectStoreWrappingImplementation extends DOMWrapperBase implements ID
}
static IDBRequest _clear(receiver) native;
+ IDBRequest count([IDBKeyRange range = null]) {
+ if (range === null) {
+ return _count(this);
+ } else {
+ return _count_2(this, range);
+ }
+ }
+ static IDBRequest _count(receiver) native;
+ static IDBRequest _count_2(receiver, range) native;
+
IDBIndex createIndex(String name, String keyPath) {
return _createIndex(this, name, keyPath);
}

Powered by Google App Engine
This is Rietveld 408576698