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

Unified Diff: Source/WebCore/Modules/indexeddb/IDBObjectStore.idl

Issue 11336016: Revert 128379 - IndexedDB: Use ScriptValue instead of SerializedScriptValue when possible (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1271/
Patch Set: Created 8 years, 2 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: 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
« no previous file with comments | « Source/WebCore/Modules/indexeddb/IDBObjectStore.cpp ('k') | Source/WebCore/bindings/v8/IDBBindingUtilities.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698