Index: Source/WebCore/Modules/indexeddb/IDBObjectStore.idl |
=================================================================== |
--- Source/WebCore/Modules/indexeddb/IDBObjectStore.idl (revision 132819) |
+++ Source/WebCore/Modules/indexeddb/IDBObjectStore.idl (working copy) |
@@ -34,9 +34,9 @@ |
readonly attribute IDBTransaction transaction; |
readonly attribute boolean autoIncrement; |
- [CallWith=ScriptExecutionContext] IDBRequest put(in any value, in [Optional] IDBKey key) |
+ [CallWith=ScriptExecutionContext] IDBRequest put(in SerializedScriptValue value, in [Optional] IDBKey key) |
raises (IDBDatabaseException); |
- [CallWith=ScriptExecutionContext] IDBRequest add(in any value, in [Optional] IDBKey key) |
+ [CallWith=ScriptExecutionContext] IDBRequest add(in SerializedScriptValue value, in [Optional] IDBKey key) |
raises (IDBDatabaseException); |
[CallWith=ScriptExecutionContext, ImplementedAs=deleteFunction] IDBRequest delete(in IDBKeyRange? keyRange) |
raises (IDBDatabaseException); |
Property changes on: Source/WebCore/Modules/indexeddb/IDBObjectStore.idl |
___________________________________________________________________ |
Added: svn:mergeinfo |
Merged /trunk/WebCore/Modules/indexeddb/IDBObjectStore.idl:r53455 |