Index: content/browser/indexed_db/indexed_db_factory.h |
diff --git a/content/browser/indexed_db/indexed_db_factory.h b/content/browser/indexed_db/indexed_db_factory.h |
index 142008b0e4b1d1ef46d4d0793091a6d85a1a3126..1b76d7946ccf064ce8c38f12a1b90ca03b180ae7 100644 |
--- a/content/browser/indexed_db/indexed_db_factory.h |
+++ b/content/browser/indexed_db/indexed_db_factory.h |
@@ -13,7 +13,7 @@ |
#include "base/memory/ref_counted.h" |
#include "base/memory/weak_ptr.h" |
#include "base/strings/string16.h" |
-#include "content/browser/indexed_db/indexed_db_callbacks_wrapper.h" |
+#include "content/browser/indexed_db/indexed_db_callbacks.h" |
#include "content/browser/indexed_db/indexed_db_database_callbacks.h" |
#include "content/browser/indexed_db/indexed_db_factory.h" |
#include "content/common/content_export.h" |
@@ -33,19 +33,19 @@ class CONTENT_EXPORT IndexedDBFactory |
// Notifications from weak pointers. |
void RemoveIDBDatabaseBackend(const string16& unique_identifier); |
- void GetDatabaseNames(scoped_refptr<IndexedDBCallbacksWrapper> callbacks, |
+ void GetDatabaseNames(scoped_refptr<IndexedDBCallbacks> callbacks, |
const string16& database_identifier, |
const base::FilePath& data_directory); |
void 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); |
void DeleteDatabase(const string16& name, |
- scoped_refptr<IndexedDBCallbacksWrapper> callbacks, |
+ scoped_refptr<IndexedDBCallbacks> callbacks, |
const string16& database_identifier, |
const base::FilePath& data_directory); |