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

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

Issue 295163005: Remove ScriptState::current() from IDBRequest (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 7 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 | « Source/core/animation/TimingInputTest.cpp ('k') | Source/modules/indexeddb/IDBCursor.cpp » ('j') | no next file with comments »
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 6361d78cf58829237cda493b59602ca233506896..7a2ae7ccd8be1a36528bbef4df2a301f2b4c2624 100644
--- a/Source/modules/indexeddb/IDBCursor.h
+++ b/Source/modules/indexeddb/IDBCursor.h
@@ -71,11 +71,11 @@ public:
ScriptValue value(ScriptState*);
ScriptValue source(ScriptState*) const;
- IDBRequest* update(ExecutionContext*, ScriptValue&, ExceptionState&);
+ IDBRequest* update(ScriptState*, ScriptValue&, ExceptionState&);
void advance(unsigned long, ExceptionState&);
- void continueFunction(ExecutionContext*, const ScriptValue& key, ExceptionState&);
- void continuePrimaryKey(ExecutionContext*, const ScriptValue& key, const ScriptValue& primaryKey, ExceptionState&);
- IDBRequest* deleteFunction(ExecutionContext*, ExceptionState&);
+ void continueFunction(ScriptState*, const ScriptValue& key, ExceptionState&);
+ void continuePrimaryKey(ScriptState*, const ScriptValue& key, const ScriptValue& primaryKey, ExceptionState&);
+ IDBRequest* deleteFunction(ScriptState*, ExceptionState&);
bool isKeyDirty() const { return m_keyDirty; }
bool isPrimaryKeyDirty() const { return m_primaryKeyDirty; }
« no previous file with comments | « Source/core/animation/TimingInputTest.cpp ('k') | Source/modules/indexeddb/IDBCursor.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698