| Index: content/common/utility_messages.h
|
| diff --git a/content/common/utility_messages.h b/content/common/utility_messages.h
|
| index c336352ee371a1a4351a9a48e6cf9af28f08255e..578938a580d20201b5f7946a5ecd0c98983c833e 100644
|
| --- a/content/common/utility_messages.h
|
| +++ b/content/common/utility_messages.h
|
| @@ -10,6 +10,7 @@
|
| #include "base/basictypes.h"
|
| #include "content/common/content_export.h"
|
| #include "content/common/indexed_db/indexed_db_key.h"
|
| +#include "content/common/indexed_db/indexed_db_key_path.h"
|
| #include "content/common/indexed_db/indexed_db_param_traits.h"
|
| #include "content/public/common/common_param_traits.h"
|
| #include "content/public/common/serialized_script_value.h"
|
| @@ -29,12 +30,12 @@
|
| IPC_MESSAGE_CONTROL3(UtilityMsg_IDBKeysFromValuesAndKeyPath,
|
| int, // id
|
| std::vector<content::SerializedScriptValue>,
|
| - string16) // IDBKeyPath
|
| + content::IndexedDBKeyPath)
|
|
|
| IPC_MESSAGE_CONTROL3(UtilityMsg_InjectIDBKey,
|
| IndexedDBKey /* key */,
|
| content::SerializedScriptValue /* value */,
|
| - string16 /* key path*/)
|
| + content::IndexedDBKeyPath)
|
|
|
| // Tells the utility process that it's running in batch mode.
|
| IPC_MESSAGE_CONTROL0(UtilityMsg_BatchMode_Started)
|
| @@ -59,11 +60,6 @@ IPC_MESSAGE_CONTROL2(UtilityHostMsg_IDBKeysFromValuesAndKeyPath_Succeeded,
|
| int /* id */,
|
| std::vector<IndexedDBKey> /* value */)
|
|
|
| -// Reply when the utility process has failed in obtaining the value for
|
| -// IDBKeyPath.
|
| -IPC_MESSAGE_CONTROL1(UtilityHostMsg_IDBKeysFromValuesAndKeyPath_Failed,
|
| - int /* id */)
|
| -
|
| // Reply when the utility process has finished injecting an IDBKey into
|
| // a SerializedScriptValue.
|
| IPC_MESSAGE_CONTROL1(UtilityHostMsg_InjectIDBKey_Finished,
|
|
|