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

Unified Diff: content/browser/indexed_db/indexed_db_transaction.cc

Issue 18224002: IndexedDB: Eliminate IndexedDBDatabaseCallbacksWrapper (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Include fix for win Created 7 years, 6 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: content/browser/indexed_db/indexed_db_transaction.cc
diff --git a/content/browser/indexed_db/indexed_db_transaction.cc b/content/browser/indexed_db/indexed_db_transaction.cc
index 2a98737daa3deaaad55ecfa084bccb10bd0f0377..3713b2db1f2893f5de6c0fe93bffe684a3e9f35c 100644
--- a/content/browser/indexed_db/indexed_db_transaction.cc
+++ b/content/browser/indexed_db/indexed_db_transaction.cc
@@ -10,7 +10,7 @@
#include "content/browser/indexed_db/indexed_db_backing_store.h"
#include "content/browser/indexed_db/indexed_db_cursor.h"
#include "content/browser/indexed_db/indexed_db_database.h"
-#include "content/browser/indexed_db/indexed_db_database_callbacks_wrapper.h"
+#include "content/browser/indexed_db/indexed_db_database_callbacks.h"
#include "content/browser/indexed_db/indexed_db_tracing.h"
#include "content/browser/indexed_db/indexed_db_transaction_coordinator.h"
#include "third_party/WebKit/public/platform/WebIDBDatabaseException.h"
@@ -51,7 +51,7 @@ IndexedDBTransaction::TaskStack::pop() {
scoped_refptr<IndexedDBTransaction> IndexedDBTransaction::Create(
int64 id,
- scoped_refptr<IndexedDBDatabaseCallbacksWrapper> callbacks,
+ scoped_refptr<IndexedDBDatabaseCallbacks> callbacks,
const std::vector<int64>& object_store_ids,
indexed_db::TransactionMode mode,
IndexedDBDatabase* database) {
@@ -65,7 +65,7 @@ scoped_refptr<IndexedDBTransaction> IndexedDBTransaction::Create(
IndexedDBTransaction::IndexedDBTransaction(
int64 id,
- scoped_refptr<IndexedDBDatabaseCallbacksWrapper> callbacks,
+ scoped_refptr<IndexedDBDatabaseCallbacks> callbacks,
const std::set<int64>& object_store_ids,
indexed_db::TransactionMode mode,
IndexedDBDatabase* database)
« no previous file with comments | « content/browser/indexed_db/indexed_db_transaction.h ('k') | content/browser/indexed_db/webidbdatabase_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698