| Index: remoting/host/chromoting_host.cc
|
| diff --git a/remoting/host/chromoting_host.cc b/remoting/host/chromoting_host.cc
|
| index 427ced6d8794b54a13b1040d159bc9cd6368fe3a..346e887fc46c48feeb636215fd889f0b6af92057 100644
|
| --- a/remoting/host/chromoting_host.cc
|
| +++ b/remoting/host/chromoting_host.cc
|
| @@ -113,13 +113,14 @@ ChromotingHost::~ChromotingHost() {
|
| FOR_EACH_OBSERVER(HostStatusObserver, status_observers_, OnShutdown());
|
| }
|
|
|
| -void ChromotingHost::Start(const std::string& host_owner) {
|
| +void ChromotingHost::Start(const std::string& host_owner_email) {
|
| DCHECK(CalledOnValidThread());
|
| DCHECK(!started_);
|
|
|
| HOST_LOG << "Starting host";
|
| started_ = true;
|
| - FOR_EACH_OBSERVER(HostStatusObserver, status_observers_, OnStart(host_owner));
|
| + FOR_EACH_OBSERVER(HostStatusObserver, status_observers_,
|
| + OnStart(host_owner_email));
|
|
|
| // Start the SessionManager, supplying this ChromotingHost as the listener.
|
| session_manager_->Init(signal_strategy_, this);
|
|
|