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

Unified Diff: client/dom/generated/src/frog/IDBObjectStore.dart

Issue 9264057: Refresh dart:dom libraries from WebKit (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Don't re-implement List<>, causes code that dartc rejects due to static 'override' Created 8 years, 11 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/frog/IDBObjectStore.dart
diff --git a/client/dom/generated/src/frog/IDBObjectStore.dart b/client/dom/generated/src/frog/IDBObjectStore.dart
index 4699fa0d4ae12b2c7a75eab8dd587c6bc2d53f4d..9ebd408553b4641917bd38a09ba1f07986bdbf23 100644
--- a/client/dom/generated/src/frog/IDBObjectStore.dart
+++ b/client/dom/generated/src/frog/IDBObjectStore.dart
@@ -7,7 +7,7 @@ class IDBObjectStoreJs extends DOMTypeJs implements IDBObjectStore native "*IDBO
IDBTransactionJs get transaction() native "return this.transaction;";
- IDBRequestJs add(String value, [IDBKeyJs key = null]) native;
+ IDBRequestJs add(Dynamic/*SerializedScriptValue*/ value, [IDBKeyJs key = null]) native;
IDBRequestJs clear() native;
@@ -25,5 +25,5 @@ class IDBObjectStoreJs extends DOMTypeJs implements IDBObjectStore native "*IDBO
IDBRequestJs openCursor([IDBKeyRangeJs range = null, int direction = null]) native;
- IDBRequestJs put(String value, [IDBKeyJs key = null]) native;
+ IDBRequestJs put(Dynamic/*SerializedScriptValue*/ value, [IDBKeyJs key = null]) native;
}

Powered by Google App Engine
This is Rietveld 408576698