Chromium Code Reviews| Index: remoting/host/client_session.h |
| diff --git a/remoting/host/client_session.h b/remoting/host/client_session.h |
| index af788779d1df2c58583c1c9cbed86496047aa5d6..fc1902389ad93a310fdb461f3360184206fbc6b7 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,10 @@ class ClientSession |
| const std::string& channel_name, |
| const protocol::TransportRoute& route) = 0; |
| + // Called when the initial client dimensions are received, and when they |
| + // change. |
|
Jamie
2012/09/13 20:32:05
This is not currently true. The initial client siz
|
| + virtual void OnClientDimensionsChanged(const SkISize& size) = 0; |
| + |
| protected: |
| virtual ~EventHandler() {} |
| }; |