From 809e10f57b8bbfb1b780e3963a7466b15aef45bf Mon Sep 17 00:00:00 2001 From: "sergeyu@chromium.org" Date: Thu, 23 Dec 2010 19:31:40 +0000 Subject: Remove chromoting host registration from service process. More IPCs to control host state. BUG=None TEST=Unittests. Review URL: http://codereview.chromium.org/5955001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@70081 0039d316-1c4b-4281-b951-d872f2087c98 --- chrome/service/service_ipc_server.h | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) (limited to 'chrome/service/service_ipc_server.h') diff --git a/chrome/service/service_ipc_server.h b/chrome/service/service_ipc_server.h index 79416a5..af19f7b 100644 --- a/chrome/service/service_ipc_server.h +++ b/chrome/service/service_ipc_server.h @@ -44,11 +44,16 @@ class ServiceIPCServer : public IPC::Channel::Listener, void OnEnableCloudPrintProxyWithTokens(const std::string& cloud_print_token, const std::string& talk_token); void OnIsCloudPrintProxyEnabled(); - - void OnEnableRemotingWithTokens(const std::string& login, - const std::string& remoting_token, - const std::string& talk_token); void OnDisableCloudPrintProxy(); + +#if defined(ENABLE_REMOTING) + void OnSetRemotingHostCredentials(const std::string& login, + const std::string& talk_token); + void OnEnableRemotingHost(); + void OnDisableRemotingHost(); + void OnGetRemotingHostInfo(); +#endif // defined(ENABLE_REMOTING) + void OnHello(); void OnShutdown(); void OnUpdateAvailable(); -- cgit v1.1