| Index: remoting/host/chromoting_host.cc
|
| diff --git a/remoting/host/chromoting_host.cc b/remoting/host/chromoting_host.cc
|
| index 447be4da21340d96cbd62e045533c961dc33837f..9f7de5613804b7f97250d119805a05965f50761a 100644
|
| --- a/remoting/host/chromoting_host.cc
|
| +++ b/remoting/host/chromoting_host.cc
|
| @@ -329,19 +329,6 @@ void ChromotingHost::set_protocol_config(
|
| protocol_config_ = config.Pass();
|
| }
|
|
|
| -void ChromotingHost::PauseSession(bool pause) {
|
| - if (!network_task_runner_->BelongsToCurrentThread()) {
|
| - network_task_runner_->PostTask(
|
| - FROM_HERE, base::Bind(&ChromotingHost::PauseSession, this, pause));
|
| - return;
|
| - }
|
| -
|
| - ClientList::iterator client;
|
| - for (client = clients_.begin(); client != clients_.end(); ++client) {
|
| - (*client)->SetDisableInputs(pause);
|
| - }
|
| -}
|
| -
|
| void ChromotingHost::DisconnectAllClients() {
|
| if (!network_task_runner_->BelongsToCurrentThread()) {
|
| network_task_runner_->PostTask(
|
|
|