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

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

Issue 8835006: New version of dart:html (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix typos Created 9 years 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/html/generated/src/wrapping/_IDBObjectStoreWrappingImplementation.dart
diff --git a/client/html/generated/src/wrapping/_IDBObjectStoreWrappingImplementation.dart b/client/html/generated/src/wrapping/_IDBObjectStoreWrappingImplementation.dart
index c9f6566fc1d701f6776421de717d2f7d7adb1c56..76b8911b3b6b600c2e03905b91ce7598f620fde5 100644
--- a/client/html/generated/src/wrapping/_IDBObjectStoreWrappingImplementation.dart
+++ b/client/html/generated/src/wrapping/_IDBObjectStoreWrappingImplementation.dart
@@ -11,7 +11,9 @@ class IDBObjectStoreWrappingImplementation extends DOMWrapperBase implements IDB
String get name() { return _ptr.name; }
- IDBRequest add(String value, [IDBKey key = null]) {
+ IDBTransaction get transaction() { return LevelDom.wrapIDBTransaction(_ptr.transaction); }
+
+ IDBRequest add(String value, [IDBKey key]) {
if (key === null) {
return LevelDom.wrapIDBRequest(_ptr.add(value));
} else {
@@ -44,7 +46,7 @@ class IDBObjectStoreWrappingImplementation extends DOMWrapperBase implements IDB
return LevelDom.wrapIDBIndex(_ptr.index(name));
}
- IDBRequest openCursor([IDBKeyRange range = null, int direction = null]) {
+ IDBRequest openCursor([IDBKeyRange range, int direction]) {
if (range === null) {
if (direction === null) {
return LevelDom.wrapIDBRequest(_ptr.openCursor());
@@ -59,7 +61,7 @@ class IDBObjectStoreWrappingImplementation extends DOMWrapperBase implements IDB
throw "Incorrect number or type of arguments";
}
- IDBRequest put(String value, [IDBKey key = null]) {
+ IDBRequest put(String value, [IDBKey key]) {
if (key === null) {
return LevelDom.wrapIDBRequest(_ptr.put(value));
} else {

Powered by Google App Engine
This is Rietveld 408576698