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

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

Issue 23653024: IndexedDB: Have IDBCursor and IDBRequest explicitly break ref cycles (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 3 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/IDBAny.h
diff --git a/Source/modules/indexeddb/IDBAny.h b/Source/modules/indexeddb/IDBAny.h
index 21caadcf8786315e850c85cae22524014644e1c2..1d5c5d2f4eab69a21b99270469d9be96294a2a63 100644
--- a/Source/modules/indexeddb/IDBAny.h
+++ b/Source/modules/indexeddb/IDBAny.h
@@ -91,14 +91,14 @@ public:
Type type() const { return m_type; }
// Use type() to figure out which one of these you're allowed to call.
- PassRefPtr<DOMStringList> domStringList();
- PassRefPtr<IDBCursor> idbCursor();
- PassRefPtr<IDBCursorWithValue> idbCursorWithValue();
- PassRefPtr<IDBDatabase> idbDatabase();
- PassRefPtr<IDBFactory> idbFactory();
- PassRefPtr<IDBIndex> idbIndex();
- PassRefPtr<IDBObjectStore> idbObjectStore();
- PassRefPtr<IDBTransaction> idbTransaction();
+ DOMStringList* domStringList();
jsbell 2013/09/06 00:27:51 This may seem unrelated, but without this the requ
+ IDBCursor* idbCursor();
+ IDBCursorWithValue* idbCursorWithValue();
+ IDBDatabase* idbDatabase();
+ IDBFactory* idbFactory();
+ IDBIndex* idbIndex();
+ IDBObjectStore* idbObjectStore();
+ IDBTransaction* idbTransaction();
const ScriptValue& scriptValue();
int64_t integer();
const String& string();

Powered by Google App Engine
This is Rietveld 408576698