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

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
Index: Source/modules/indexeddb/IDBCursor.h
diff --git a/Source/modules/indexeddb/IDBCursor.h b/Source/modules/indexeddb/IDBCursor.h
index be9afbcf7a221b5bf4c092157ac486fecccf338b..5b32dd7ff176768422a781caa39ad7c9a490f477 100644
--- a/Source/modules/indexeddb/IDBCursor.h
+++ b/Source/modules/indexeddb/IDBCursor.h
@@ -78,11 +78,11 @@ public:
ScriptValue value(ScriptState*);
ScriptValue source(ScriptState*) const;
- PassRefPtrWillBeRawPtr<IDBRequest> update(ExecutionContext*, ScriptValue&, ExceptionState&);
+ PassRefPtrWillBeRawPtr<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&);
- PassRefPtrWillBeRawPtr<IDBRequest> deleteFunction(ExecutionContext*, ExceptionState&);
+ void continueFunction(ScriptState*, const ScriptValue& key, ExceptionState&);
+ void continuePrimaryKey(ScriptState*, const ScriptValue& key, const ScriptValue& primaryKey, ExceptionState&);
+ PassRefPtrWillBeRawPtr<IDBRequest> deleteFunction(ScriptState*, ExceptionState&);
bool isKeyDirty() const { return m_keyDirty; }
bool isPrimaryKeyDirty() const { return m_primaryKeyDirty; }

Powered by Google App Engine
This is Rietveld 408576698