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

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

Issue 9264057: Refresh dart:dom libraries from WebKit (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: CR changes 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/wrapping/_IDBObjectStoreWrappingImplementation.dart
diff --git a/client/dom/generated/src/wrapping/_IDBObjectStoreWrappingImplementation.dart b/client/dom/generated/src/wrapping/_IDBObjectStoreWrappingImplementation.dart
index 5aa02627e889e05e8dd482812987405b1df5aabb..c802fafb2ba3be5dfe5a5922e01e363039cf924e 100644
--- a/client/dom/generated/src/wrapping/_IDBObjectStoreWrappingImplementation.dart
+++ b/client/dom/generated/src/wrapping/_IDBObjectStoreWrappingImplementation.dart
@@ -20,7 +20,7 @@ class _IDBObjectStoreWrappingImplementation extends DOMWrapperBase implements ID
IDBTransaction get transaction() { return _get_transaction(this); }
static IDBTransaction _get_transaction(var _this) native;
- IDBRequest add(String value, [IDBKey key = null]) {
+ IDBRequest add(Dynamic value, [IDBKey key = null]) {
if (key === null) {
return _add(this, value);
} else {
@@ -89,7 +89,7 @@ class _IDBObjectStoreWrappingImplementation extends DOMWrapperBase implements ID
static IDBRequest _openCursor_2(receiver, range) native;
static IDBRequest _openCursor_3(receiver, range, direction) native;
- IDBRequest put(String value, [IDBKey key = null]) {
+ IDBRequest put(Dynamic value, [IDBKey key = null]) {
if (key === null) {
return _put(this, value);
} else {

Powered by Google App Engine
This is Rietveld 408576698