| Index: content/browser/in_process_webkit/indexed_db_callbacks.cc
|
| diff --git a/content/browser/in_process_webkit/indexed_db_callbacks.cc b/content/browser/in_process_webkit/indexed_db_callbacks.cc
|
| index 9244e07b8945c59e44015c346c405e64a71272df..5a16fa375e81ee8f573371ae0430f1e9f3f016ec 100644
|
| --- a/content/browser/in_process_webkit/indexed_db_callbacks.cc
|
| +++ b/content/browser/in_process_webkit/indexed_db_callbacks.cc
|
| @@ -39,24 +39,6 @@ void IndexedDBCallbacksBase::onBlocked() {
|
| response_id_));
|
| }
|
|
|
| -IndexedDBCallbacksTransaction::IndexedDBCallbacksTransaction(
|
| - IndexedDBDispatcherHost* dispatcher_host,
|
| - int32 thread_id,
|
| - int32 response_id,
|
| - const GURL& origin_url)
|
| - : IndexedDBCallbacksBase(dispatcher_host, thread_id, response_id),
|
| - origin_url_(origin_url) {
|
| -}
|
| -
|
| -void IndexedDBCallbacksTransaction::onSuccess(
|
| - WebKit::WebIDBTransaction* idb_object) {
|
| - int32 object_id =
|
| - dispatcher_host()->Add(idb_object, thread_id(), origin_url_);
|
| - dispatcher_host()->Send(
|
| - new IndexedDBMsg_CallbacksSuccessIDBTransaction(thread_id(),
|
| - response_id(), object_id));
|
| -}
|
| -
|
| IndexedDBCallbacksDatabase::IndexedDBCallbacksDatabase(
|
| IndexedDBDispatcherHost* dispatcher_host,
|
| int32 thread_id,
|
|
|