Index: remoting/host/remoting_me2me_host.cc |
diff --git a/remoting/host/remoting_me2me_host.cc b/remoting/host/remoting_me2me_host.cc |
index f55f9c8a75967d884ae46ab514f378b97f0e0026..2ba593faa364839b2eb32827001ddf806f545f23 100644 |
--- a/remoting/host/remoting_me2me_host.cc |
+++ b/remoting/host/remoting_me2me_host.cc |
@@ -105,6 +105,14 @@ class HostProcess { |
// Run the ChromotingHost until the shutdown task is executed. |
host_->Start(); |
+ |
+ // Set an empty shared-secret for Me2Me. |
+ // TODO(lambroslambrou): This is a temporary fix, pending a Me2Me-specific |
+ // AuthenticatorFactory. |
Sergey Ulanov
2011/12/01 01:34:01
please reference crbug.com/105214 here.
|
+ context.network_message_loop()->PostTask( |
+ FROM_HERE, base::Bind(&ChromotingHost::SetSharedSecret, host_.get(), |
+ std::string())); |
Sergey Ulanov
2011/12/01 01:34:01
"" - is more readable.
|
+ |
message_loop.MessageLoop::Run(); |
// And then stop the chromoting context. |