| Index: remoting/host/client_session.cc
|
| diff --git a/remoting/host/client_session.cc b/remoting/host/client_session.cc
|
| index 18b3c66c098dee4c20d5fac8e994bf17c300fe82..fb404e807f681e49e59349a9f3de25d51e98b880 100644
|
| --- a/remoting/host/client_session.cc
|
| +++ b/remoting/host/client_session.cc
|
| @@ -404,13 +404,14 @@ void ClientSession::OnConnectionClosed(
|
| event_handler_->OnSessionClosed(this);
|
| }
|
|
|
| -void ClientSession::OnEventTimestamp(protocol::ConnectionToClient* connection,
|
| - int64 timestamp) {
|
| +void ClientSession::OnInputEventReceived(
|
| + protocol::ConnectionToClient* connection,
|
| + int64_t event_timestamp) {
|
| DCHECK(CalledOnValidThread());
|
| DCHECK_EQ(connection_.get(), connection);
|
|
|
| if (video_frame_pump_.get())
|
| - video_frame_pump_->SetLatestEventTimestamp(timestamp);
|
| + video_frame_pump_->OnInputEventReceived(event_timestamp);
|
| }
|
|
|
| void ClientSession::OnRouteChange(
|
|
|