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

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

Issue 78053006: [oilpan] Move IDBDatabase, IDBDatabaseCallbacks, IDBDatabaseBackendInterface and other related clas… (Closed) Base URL: svn://svn.chromium.org/blink/branches/oilpan
Patch Set: Created 7 years 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/modules/indexeddb/IDBCallbacks.h ('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 50b0d0e4990d92b4626e5419c57a306b9a6a36ff..c72d6e05e34be815fdeaa0ac3f9c6c585e207cb9 100644
--- a/Source/modules/indexeddb/IDBCursor.h
+++ b/Source/modules/indexeddb/IDBCursor.h
@@ -67,10 +67,10 @@ public:
const ScriptValue& value() const;
IDBAny* source() const;
- PassRefPtr<IDBRequest> update(ScriptState*, ScriptValue&, ExceptionCode&);
+ IDBRequest* update(ScriptState*, ScriptValue&, ExceptionCode&);
void advance(unsigned long, ExceptionCode&);
void continueFunction(ScriptExecutionContext*, const ScriptValue& key, ExceptionCode&);
- PassRefPtr<IDBRequest> deleteFunction(ScriptExecutionContext*, ExceptionCode&);
+ IDBRequest* deleteFunction(ScriptExecutionContext*, ExceptionCode&);
void continueFunction(PassRefPtr<IDBKey>, ExceptionCode&);
void postSuccessHandlerCallback();
@@ -88,7 +88,7 @@ private:
bool isDeleted() const;
RefPtr<IDBCursorBackendInterface> m_backend;
- RefPtr<IDBRequest> m_request;
+ Persistent<IDBRequest> m_request;
const IndexedDB::CursorDirection m_direction;
RefPtr<IDBAny> m_source;
RefPtr<IDBTransaction> m_transaction;
« no previous file with comments | « Source/modules/indexeddb/IDBCallbacks.h ('k') | Source/modules/indexeddb/IDBCursor.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698