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

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

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/IDBAny.h ('k') | Source/modules/indexeddb/IDBCallbacks.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/indexeddb/IDBAny.cpp
diff --git a/Source/modules/indexeddb/IDBAny.cpp b/Source/modules/indexeddb/IDBAny.cpp
index d1d2f599c5e95c66cb57d22c74fd68dacbed6f8a..97566de1f3e9c16a4c087eba8f2777a4e3b5f753 100644
--- a/Source/modules/indexeddb/IDBAny.cpp
+++ b/Source/modules/indexeddb/IDBAny.cpp
@@ -81,7 +81,7 @@ PassRefPtr<IDBCursorWithValue> IDBAny::idbCursorWithValue()
return m_idbCursorWithValue;
}
-PassRefPtr<IDBDatabase> IDBAny::idbDatabase()
+IDBDatabase* IDBAny::idbDatabase()
{
ASSERT(m_type == IDBDatabaseType);
return m_idbDatabase;
@@ -153,7 +153,7 @@ IDBAny::IDBAny(PassRefPtr<IDBCursor> value)
ScriptWrappable::init(this);
}
-IDBAny::IDBAny(PassRefPtr<IDBDatabase> value)
+IDBAny::IDBAny(IDBDatabase* value)
: m_type(IDBDatabaseType)
, m_idbDatabase(value)
, m_integer(0)
« no previous file with comments | « Source/modules/indexeddb/IDBAny.h ('k') | Source/modules/indexeddb/IDBCallbacks.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698