diff options
Diffstat (limited to 'chrome/common/service_messages_internal.h')
-rw-r--r-- | chrome/common/service_messages_internal.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/chrome/common/service_messages_internal.h b/chrome/common/service_messages_internal.h index 4968db0..99d1dd8 100644 --- a/chrome/common/service_messages_internal.h +++ b/chrome/common/service_messages_internal.h @@ -29,6 +29,12 @@ IPC_BEGIN_MESSAGES(Service) // Tell the service process to disable the cloud proxy. IPC_MESSAGE_CONTROL0(ServiceMsg_DisableCloudPrintProxy) + // This message is for testing purpose. + IPC_MESSAGE_CONTROL0(ServiceMsg_Hello) + + // Tell the service process to shutdown. + IPC_MESSAGE_CONTROL0(ServiceMsg_Shutdown) + IPC_END_MESSAGES(Service) //------------------------------------------------------------------------------ @@ -39,5 +45,8 @@ IPC_BEGIN_MESSAGES(ServiceHost) // Sent when the cloud print proxy has an authentication error. IPC_MESSAGE_CONTROL0(ServiceHostMsg_CloudPrintProxy_AuthError) + // Sent from the service process in response to a Hello message. + IPC_MESSAGE_CONTROL0(ServiceHostMsg_GoodDay) + IPC_END_MESSAGES(ServiceHost) |