| Index: remoting/host/client_session.h
|
| diff --git a/remoting/host/client_session.h b/remoting/host/client_session.h
|
| index af788779d1df2c58583c1c9cbed86496047aa5d6..f0ab673e656cd9a06da760fb5b496a6a5fb31c22 100644
|
| --- a/remoting/host/client_session.h
|
| +++ b/remoting/host/client_session.h
|
| @@ -23,6 +23,7 @@
|
| #include "remoting/protocol/input_filter.h"
|
| #include "remoting/protocol/input_stub.h"
|
| #include "third_party/skia/include/core/SkPoint.h"
|
| +#include "third_party/skia/include/core/SkSize.h"
|
|
|
| namespace base {
|
| class SingleThreadTaskRunner;
|
| @@ -75,6 +76,11 @@ class ClientSession
|
| const std::string& channel_name,
|
| const protocol::TransportRoute& route) = 0;
|
|
|
| + // Called when the initial client dimensions are received, and when they
|
| + // change.
|
| + virtual void OnClientDimensionsChanged(ClientSession* client,
|
| + const SkISize& size) = 0;
|
| +
|
| protected:
|
| virtual ~EventHandler() {}
|
| };
|
|
|