OLD | NEW |
---|---|
(Empty) | |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #include "remoting/host/ipc_session_controller.h" | |
6 | |
7 #include "base/logging.h" | |
8 #include "remoting/host/desktop_session_proxy.h" | |
9 | |
10 namespace remoting { | |
11 | |
12 IpcSessionController::IpcSessionController( | |
13 scoped_refptr<DesktopSessionProxy> desktop_session_proxy) | |
14 : desktop_session_proxy_(desktop_session_proxy) { | |
15 } | |
16 | |
17 IpcSessionController::~IpcSessionController() { | |
18 } | |
19 | |
20 void IpcSessionController::OnClientResolutionChanged( | |
21 const SkIPoint& client_dpi, | |
22 const SkISize& client_size) { | |
23 NOTIMPLEMENTED(); | |
Jamie
2013/03/09 00:53:18
Can you add a note to the CL description stating t
alexeypa (please no reviews)
2013/03/09 01:05:34
Done.
| |
24 } | |
25 | |
26 } // namespace remoting | |
OLD | NEW |