diff options
Diffstat (limited to 'chrome/common/utility_messages_internal.h')
-rw-r--r-- | chrome/common/utility_messages_internal.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/chrome/common/utility_messages_internal.h b/chrome/common/utility_messages_internal.h index 9231501..08dd347 100644 --- a/chrome/common/utility_messages_internal.h +++ b/chrome/common/utility_messages_internal.h @@ -48,6 +48,20 @@ IPC_BEGIN_MESSAGES(Utility) gfx::Rect, // Render Area int, // DPI std::vector<printing::PageRange>) + + // Tell the utility process to extract the given IDBKeyPath from the + // SerializedScriptValue vector and reply with the corresponding IDBKeys. + IPC_MESSAGE_CONTROL3(UtilityMsg_IDBKeysFromValuesAndKeyPath, + int, // id + std::vector<SerializedScriptValue>, + string16) // IDBKeyPath + + // Tells the utility process that it's running in batch mode. + IPC_MESSAGE_CONTROL0(UtilityMsg_BatchMode_Started) + + // Tells the utility process that it can shutdown. + IPC_MESSAGE_CONTROL0(UtilityMsg_BatchMode_Finished) + IPC_END_MESSAGES(Utility) //------------------------------------------------------------------------------ @@ -111,4 +125,15 @@ IPC_BEGIN_MESSAGES(UtilityHost) LOGFONT /* font data */) #endif // defined(OS_WIN) + // Reply when the utility process has succeeded in obtaining the value for + // IDBKeyPath. + 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 */) + IPC_END_MESSAGES(UtilityHost) |