| 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);
 | 
|  }
 | 
| 
 |