Index: content/browser/indexed_db/indexed_db_factory.cc |
diff --git a/content/browser/indexed_db/indexed_db_factory.cc b/content/browser/indexed_db/indexed_db_factory.cc |
index b000add3a8474d7140c49a3ec0b336f0b2da2a9e..24240e6b0d2e82abd68a6196b1899b8d998edfac 100644 |
--- a/content/browser/indexed_db/indexed_db_factory.cc |
+++ b/content/browser/indexed_db/indexed_db_factory.cc |
@@ -51,7 +51,7 @@ void IndexedDBFactory::RemoveIDBDatabaseBackend( |
} |
void IndexedDBFactory::GetDatabaseNames( |
- scoped_refptr<IndexedDBCallbacksWrapper> callbacks, |
+ scoped_refptr<IndexedDBCallbacks> callbacks, |
const string16& database_identifier, |
const base::FilePath& data_directory) { |
IDB_TRACE("IndexedDBFactory::GetDatabaseNames"); |
@@ -72,7 +72,7 @@ void IndexedDBFactory::GetDatabaseNames( |
void IndexedDBFactory::DeleteDatabase( |
const string16& name, |
- scoped_refptr<IndexedDBCallbacksWrapper> callbacks, |
+ scoped_refptr<IndexedDBCallbacks> callbacks, |
const string16& database_identifier, |
const base::FilePath& data_directory) { |
IDB_TRACE("IndexedDBFactory::DeleteDatabase"); |
@@ -88,7 +88,6 @@ void IndexedDBFactory::DeleteDatabase( |
return; |
} |
- |
// TODO(dgrogan): Plumb data_loss back to script eventually? |
WebKit::WebIDBCallbacks::DataLoss data_loss; |
scoped_refptr<IndexedDBBackingStore> backing_store = |
@@ -157,7 +156,7 @@ void IndexedDBFactory::Open( |
const string16& name, |
int64 version, |
int64 transaction_id, |
- scoped_refptr<IndexedDBCallbacksWrapper> callbacks, |
+ scoped_refptr<IndexedDBCallbacks> callbacks, |
scoped_refptr<IndexedDBDatabaseCallbacks> database_callbacks, |
const string16& database_identifier, |
const base::FilePath& data_directory) { |