| Index: content/browser/indexed_db/indexed_db_dispatcher_host.cc
|
| diff --git a/content/browser/indexed_db/indexed_db_dispatcher_host.cc b/content/browser/indexed_db/indexed_db_dispatcher_host.cc
|
| index bc25dc3fe3bd4d0f6675798dfe4c54c2099cc486..ee7070bc6d5a0a7112b75281266591675f2868ef 100644
|
| --- a/content/browser/indexed_db/indexed_db_dispatcher_host.cc
|
| +++ b/content/browser/indexed_db/indexed_db_dispatcher_host.cc
|
| @@ -215,7 +215,7 @@ void IndexedDBDispatcherHost::OnIDBFactoryGetDatabaseNames(
|
| Context()->GetIDBFactory()->GetDatabaseNames(
|
| IndexedDBCallbacks::Create(
|
| this, params.ipc_thread_id, params.ipc_callbacks_id),
|
| - base::UTF8ToUTF16(params.database_identifier),
|
| + params.database_identifier,
|
| indexed_db_path);
|
| }
|
|
|
| @@ -247,7 +247,7 @@ void IndexedDBDispatcherHost::OnIDBFactoryOpen(
|
| host_transaction_id,
|
| callbacks,
|
| database_callbacks,
|
| - base::UTF8ToUTF16(params.database_identifier),
|
| + params.database_identifier,
|
| indexed_db_path);
|
| }
|
|
|
| @@ -259,7 +259,7 @@ void IndexedDBDispatcherHost::OnIDBFactoryDeleteDatabase(
|
| params.name,
|
| IndexedDBCallbacks::Create(
|
| this, params.ipc_thread_id, params.ipc_callbacks_id),
|
| - base::UTF8ToUTF16(params.database_identifier),
|
| + params.database_identifier,
|
| indexed_db_path);
|
| }
|
|
|
|
|