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

Unified Diff: chrome/service/service_ipc_server.cc

Issue 6214003: Show remoting host status on the advanced options page. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/remoting/tools
Patch Set: git try Created 9 years, 11 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/service/service_ipc_server.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/service/service_ipc_server.cc
diff --git a/chrome/service/service_ipc_server.cc b/chrome/service/service_ipc_server.cc
index 978d348ed86be19b2a7bb63a700a109039604bc0..24f7600f6a7203b6d847c5218a069a7e1b090a52 100644
--- a/chrome/service/service_ipc_server.cc
+++ b/chrome/service/service_ipc_server.cc
@@ -132,13 +132,19 @@ void ServiceIPCServer::OnSetRemotingHostCredentials(
void ServiceIPCServer::OnEnableRemotingHost() {
g_service_process->remoting_host_manager()->Enable();
+ SendRemotingHostInfo();
}
-void ServiceIPCServer:: OnDisableRemotingHost() {
+void ServiceIPCServer::OnDisableRemotingHost() {
g_service_process->remoting_host_manager()->Disable();
+ SendRemotingHostInfo();
}
-void ServiceIPCServer:: OnGetRemotingHostInfo() {
+void ServiceIPCServer::OnGetRemotingHostInfo() {
+ SendRemotingHostInfo();
+}
+
+void ServiceIPCServer::SendRemotingHostInfo() {
remoting::ChromotingHostInfo host_info;
g_service_process->remoting_host_manager()->GetHostInfo(&host_info);
channel_->Send(new ServiceHostMsg_RemotingHost_HostInfo(host_info));
« no previous file with comments | « chrome/service/service_ipc_server.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698