| Index: remoting/host/client_session.cc
|
| diff --git a/remoting/host/client_session.cc b/remoting/host/client_session.cc
|
| index a7f89eaa7582cbd825ffc58af5e7f9cad0415b44..8a9b84295a254909421011425b08d6bddefc407f 100644
|
| --- a/remoting/host/client_session.cc
|
| +++ b/remoting/host/client_session.cc
|
| @@ -70,10 +70,11 @@ ClientSession::ClientSession(
|
|
|
| void ClientSession::NotifyClientDimensions(
|
| const protocol::ClientDimensions& dimensions) {
|
| - // TODO(wez): Use the dimensions, e.g. to resize the host desktop to match.
|
| if (dimensions.has_width() && dimensions.has_height()) {
|
| VLOG(1) << "Received ClientDimensions (width="
|
| << dimensions.width() << ", height=" << dimensions.height() << ")";
|
| + event_handler_->OnClientDimensionsChanged(
|
| + this, SkISize::Make(dimensions.width(), dimensions.height()));
|
| }
|
| }
|
|
|
|
|