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

Unified Diff: Source/modules/indexeddb/IDBCursor.h

Issue 497033002: Make some ScriptValue references const in modules/indexeddb (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 4 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
« no previous file with comments | « no previous file | Source/modules/indexeddb/IDBCursor.cpp » ('j') | Source/modules/indexeddb/IDBObjectStore.cpp » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/indexeddb/IDBCursor.h
diff --git a/Source/modules/indexeddb/IDBCursor.h b/Source/modules/indexeddb/IDBCursor.h
index 64f48dc6848faaebf7251f7d4bf7d361e0162aba..f76ce75d89e645a4181d757fa2063957f119625e 100644
--- a/Source/modules/indexeddb/IDBCursor.h
+++ b/Source/modules/indexeddb/IDBCursor.h
@@ -61,7 +61,7 @@ public:
ScriptValue value(ScriptState*);
ScriptValue source(ScriptState*) const;
- IDBRequest* update(ScriptState*, ScriptValue&, ExceptionState&);
+ IDBRequest* update(ScriptState*, const ScriptValue&, ExceptionState&);
void advance(unsigned long, ExceptionState&);
void continueFunction(ScriptState*, const ScriptValue& key, ExceptionState&);
void continuePrimaryKey(ScriptState*, const ScriptValue& key, const ScriptValue& primaryKey, ExceptionState&);
« no previous file with comments | « no previous file | Source/modules/indexeddb/IDBCursor.cpp » ('j') | Source/modules/indexeddb/IDBObjectStore.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698