summaryrefslogtreecommitdiffstats
path: root/chrome/service/service_ipc_server.h
diff options
context:
space:
mode:
authorsergeyu@chromium.org <sergeyu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-12-23 19:31:40 +0000
committersergeyu@chromium.org <sergeyu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-12-23 19:31:40 +0000
commit809e10f57b8bbfb1b780e3963a7466b15aef45bf (patch)
tree00b8867d566bf0c968b519bac4f036846d0c1612 /chrome/service/service_ipc_server.h
parent1edeeaf2c02be8d62dd57a348b6a4d0e57604448 (diff)
downloadchromium_src-809e10f57b8bbfb1b780e3963a7466b15aef45bf.zip
chromium_src-809e10f57b8bbfb1b780e3963a7466b15aef45bf.tar.gz
chromium_src-809e10f57b8bbfb1b780e3963a7466b15aef45bf.tar.bz2
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
Diffstat (limited to 'chrome/service/service_ipc_server.h')
-rw-r--r--chrome/service/service_ipc_server.h13
1 files changed, 9 insertions, 4 deletions
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();