OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // Multiply-included message file, no traditional include guard. | 5 // Multiply-included message file, no traditional include guard. |
6 #include <string> | 6 #include <string> |
7 | 7 |
8 #include "chrome/common/cloud_print/cloud_print_proxy_info.h" | 8 #include "chrome/common/cloud_print/cloud_print_proxy_info.h" |
9 #include "ipc/ipc_channel_handle.h" | 9 #include "ipc/ipc_channel_handle.h" |
10 #include "ipc/ipc_message_macros.h" | 10 #include "ipc/ipc_message_macros.h" |
(...skipping 27 matching lines...) Expand all Loading... |
38 // Requests a message back on the current status of the cloud print proxy | 38 // Requests a message back on the current status of the cloud print proxy |
39 // (whether it is enabled, the email address and the proxy id). | 39 // (whether it is enabled, the email address and the proxy id). |
40 IPC_MESSAGE_CONTROL0(ServiceMsg_GetCloudPrintProxyInfo) | 40 IPC_MESSAGE_CONTROL0(ServiceMsg_GetCloudPrintProxyInfo) |
41 | 41 |
42 // Tell the service process to shutdown. | 42 // Tell the service process to shutdown. |
43 IPC_MESSAGE_CONTROL0(ServiceMsg_Shutdown) | 43 IPC_MESSAGE_CONTROL0(ServiceMsg_Shutdown) |
44 | 44 |
45 // Tell the service process that an update is available. | 45 // Tell the service process that an update is available. |
46 IPC_MESSAGE_CONTROL0(ServiceMsg_UpdateAvailable) | 46 IPC_MESSAGE_CONTROL0(ServiceMsg_UpdateAvailable) |
47 | 47 |
| 48 // Tell the service process to enable the Mac Virtual driver. |
| 49 IPC_MESSAGE_CONTROL0(ServiceMsg_EnableVirtualDriver) |
| 50 |
| 51 // Tell the service process to disable the Mac Virtual driver. |
| 52 IPC_MESSAGE_CONTROL0(ServiceMsg_DisableVirtualDriver) |
| 53 |
48 //----------------------------------------------------------------------------- | 54 //----------------------------------------------------------------------------- |
49 // Service process host messages: | 55 // Service process host messages: |
50 // These are messages from the service process to the browser. | 56 // These are messages from the service process to the browser. |
51 // Sent when the cloud print proxy has an authentication error. | 57 // Sent when the cloud print proxy has an authentication error. |
52 IPC_MESSAGE_CONTROL0(ServiceHostMsg_CloudPrintProxy_AuthError) | 58 IPC_MESSAGE_CONTROL0(ServiceHostMsg_CloudPrintProxy_AuthError) |
53 | 59 |
54 // Sent as a response to a request for cloud print proxy info | 60 // Sent as a response to a request for cloud print proxy info |
55 IPC_MESSAGE_CONTROL1(ServiceHostMsg_CloudPrintProxy_Info, | 61 IPC_MESSAGE_CONTROL1(ServiceHostMsg_CloudPrintProxy_Info, |
56 cloud_print::CloudPrintProxyInfo /* proxy info */) | 62 cloud_print::CloudPrintProxyInfo /* proxy info */) |
OLD | NEW |