Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1625)

Unified Diff: chrome/common/service_messages_internal.h

Issue 3450021: Cloud print proxy management UI. (Closed)
Patch Set: Fix nits. Created 10 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/common/net/gaia/gaia_constants.cc ('k') | chrome/service/service_ipc_server.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/service_messages_internal.h
diff --git a/chrome/common/service_messages_internal.h b/chrome/common/service_messages_internal.h
index 26225e4059fd243241c212d7d214b2d75b5465d3..bdacb34d8d3da1f943c88b6979cdf0ca0afc89dd 100644
--- a/chrome/common/service_messages_internal.h
+++ b/chrome/common/service_messages_internal.h
@@ -29,11 +29,9 @@ IPC_BEGIN_MESSAGES(Service)
// Tell the service process to disable the cloud proxy.
IPC_MESSAGE_CONTROL0(ServiceMsg_DisableCloudPrintProxy)
- // Queries whether the cloud print proxy is enabled.
- IPC_SYNC_MESSAGE_ROUTED0_2(ServiceMsg_IsCloudPrintProxyEnabled,
- bool, /* out: is_enabled*/
- std::string /* out: Email address of account */
- /* used for Cloud Print, if enabled*/)
+ // Requests a message back on whether the cloud print proxy is
+ // enabled.
+ IPC_MESSAGE_CONTROL0(ServiceMsg_IsCloudPrintProxyEnabled)
// This message is for testing purpose.
IPC_MESSAGE_CONTROL0(ServiceMsg_Hello)
@@ -57,6 +55,11 @@ IPC_BEGIN_MESSAGES(ServiceHost)
// Sent when the cloud print proxy has an authentication error.
IPC_MESSAGE_CONTROL0(ServiceHostMsg_CloudPrintProxy_AuthError)
+ // Sent as a response to a request for enablement status.
+ IPC_MESSAGE_CONTROL2(ServiceHostMsg_CloudPrintProxy_IsEnabled,
+ bool, /* Is the proxy enabled? */
+ std::string /* Email address of account */)
+
// Sent from the service process in response to a Hello message.
IPC_MESSAGE_CONTROL0(ServiceHostMsg_GoodDay)
« no previous file with comments | « chrome/common/net/gaia/gaia_constants.cc ('k') | chrome/service/service_ipc_server.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698