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/in_process_webkit/indexed_db_dispatcher_host.cc

Issue 10896030: Change some IndexedDBCallbacks<> specializations to derived classes (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: sync to ToT 2 Created 8 years, 4 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/in_process_webkit/indexed_db_dispatcher_host.cc
diff --git a/content/browser/in_process_webkit/indexed_db_dispatcher_host.cc b/content/browser/in_process_webkit/indexed_db_dispatcher_host.cc
index 95ba35c928a24766382dec12b95a4ebca90ca546..fd8f318e1c1901f4d97fd7a84259bc0f445621dc 100644
--- a/content/browser/in_process_webkit/indexed_db_dispatcher_host.cc
+++ b/content/browser/in_process_webkit/indexed_db_dispatcher_host.cc
@@ -238,8 +238,8 @@ void IndexedDBDispatcherHost::OnIDBFactoryOpen(
Context()->GetIDBFactory()->open(
params.name,
params.version,
- new IndexedDBCallbacks<WebIDBDatabase>(this, params.thread_id,
- params.response_id, origin_url),
+ new IndexedDBCallbacksDatabase(this, params.thread_id,
+ params.response_id, origin_url),
origin, NULL, webkit_glue::FilePathToWebString(indexed_db_path));
}
@@ -420,7 +420,7 @@ void IndexedDBDispatcherHost::DatabaseDispatcherHost::OnSetVersion(
*ec = 0;
idb_database->setVersion(
version,
- new IndexedDBCallbacks<WebIDBTransaction>(parent_, thread_id, response_id,
+ new IndexedDBCallbacksTransaction(parent_, thread_id, response_id,
database_url_map_[idb_database_id]),
*ec);
}

Powered by Google App Engine
This is Rietveld 408576698