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

Unified Diff: Source/modules/indexeddb/IDBAny.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/heap/Visitor.h ('k') | Source/modules/indexeddb/IDBAny.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/indexeddb/IDBAny.h
diff --git a/Source/modules/indexeddb/IDBAny.h b/Source/modules/indexeddb/IDBAny.h
index 751234c55ea0ad7ad5164f5582e903213048faca..f917c79b87924afdbac15d84907180e3175897bb 100644
--- a/Source/modules/indexeddb/IDBAny.h
+++ b/Source/modules/indexeddb/IDBAny.h
@@ -94,7 +94,7 @@ public:
PassRefPtr<DOMStringList> domStringList();
PassRefPtr<IDBCursor> idbCursor();
PassRefPtr<IDBCursorWithValue> idbCursorWithValue();
- PassRefPtr<IDBDatabase> idbDatabase();
+ IDBDatabase* idbDatabase();
IDBFactory* idbFactory();
PassRefPtr<IDBIndex> idbIndex();
PassRefPtr<IDBObjectStore> idbObjectStore();
@@ -109,7 +109,7 @@ private:
explicit IDBAny(PassRefPtr<DOMStringList>);
explicit IDBAny(PassRefPtr<IDBCursor>);
explicit IDBAny(PassRefPtr<IDBCursorWithValue>);
- explicit IDBAny(PassRefPtr<IDBDatabase>);
+ explicit IDBAny(IDBDatabase*);
explicit IDBAny(IDBFactory*);
explicit IDBAny(PassRefPtr<IDBIndex>);
explicit IDBAny(PassRefPtr<IDBObjectStore>);
@@ -125,12 +125,12 @@ private:
const RefPtr<DOMStringList> m_domStringList;
const RefPtr<IDBCursor> m_idbCursor;
const RefPtr<IDBCursorWithValue> m_idbCursorWithValue;
- const RefPtr<IDBDatabase> m_idbDatabase;
- // FIXME(oilpan): Move IDBAny to the heap and use a Member.
- const Persistent<IDBFactory> m_idbFactory;
const RefPtr<IDBIndex> m_idbIndex;
const RefPtr<IDBObjectStore> m_idbObjectStore;
const RefPtr<IDBTransaction> m_idbTransaction;
+ // FIXME(oilpan): Move IDBAny to the heap and use Members.
+ const Persistent<IDBDatabase> m_idbDatabase;
+ const Persistent<IDBFactory> m_idbFactory;
const IDBKeyPath m_idbKeyPath;
const ScriptValue m_scriptValue;
const String m_string;
« no previous file with comments | « Source/heap/Visitor.h ('k') | Source/modules/indexeddb/IDBAny.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698