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

Unified Diff: client/dom/generated/src/interface/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/interface/IDBObjectStore.dart
diff --git a/client/dom/generated/src/interface/IDBObjectStore.dart b/client/dom/generated/src/interface/IDBObjectStore.dart
index 63076d3e4f74ac593b28b463cf602b46e44ce6d0..f1748e0e36873f1c46c842f1404bfaba681e371d 100644
--- a/client/dom/generated/src/interface/IDBObjectStore.dart
+++ b/client/dom/generated/src/interface/IDBObjectStore.dart
@@ -12,7 +12,7 @@ interface IDBObjectStore {
IDBTransaction get transaction();
- IDBRequest add(String value, [IDBKey key]);
+ IDBRequest add(Dynamic/*SerializedScriptValue*/ value, [IDBKey key]);
IDBRequest clear();
@@ -30,5 +30,5 @@ interface IDBObjectStore {
IDBRequest openCursor([IDBKeyRange range, int direction]);
- IDBRequest put(String value, [IDBKey key]);
+ IDBRequest put(Dynamic/*SerializedScriptValue*/ value, [IDBKey key]);
}

Powered by Google App Engine
This is Rietveld 408576698