| Index: third_party/WebCore/Modules/indexeddb/IDBObjectStore.idl
|
| diff --git a/third_party/WebCore/Modules/indexeddb/IDBObjectStore.idl b/third_party/WebCore/Modules/indexeddb/IDBObjectStore.idl
|
| index d3a8af62a98d9ce5ce9ee318067c9d49d0970de8..f0c270ec3b3bdf67651fcd8ae4bcc2d1bcaa87bf 100644
|
| --- a/third_party/WebCore/Modules/indexeddb/IDBObjectStore.idl
|
| +++ b/third_party/WebCore/Modules/indexeddb/IDBObjectStore.idl
|
| @@ -34,9 +34,9 @@ module storage {
|
| readonly attribute IDBTransaction transaction;
|
| readonly attribute boolean autoIncrement;
|
|
|
| - [CallWith=ScriptExecutionContext] IDBRequest put(in SerializedScriptValue value, in [Optional] IDBKey key)
|
| + [CallWith=ScriptExecutionContext] IDBRequest put(in any value, in [Optional] IDBKey key)
|
| raises (IDBDatabaseException);
|
| - [CallWith=ScriptExecutionContext] IDBRequest add(in SerializedScriptValue value, in [Optional] IDBKey key)
|
| + [CallWith=ScriptExecutionContext] IDBRequest add(in any value, in [Optional] IDBKey key)
|
| raises (IDBDatabaseException);
|
| [CallWith=ScriptExecutionContext, ImplementedAs=deleteFunction] IDBRequest delete(in IDBKeyRange? keyRange)
|
| raises (IDBDatabaseException);
|
|
|