OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "remoting/host/host_mock_objects.h" | 5 #include "remoting/host/host_mock_objects.h" |
6 | 6 |
7 namespace remoting { | 7 namespace remoting { |
8 | 8 |
9 MockCapturer::MockCapturer() {} | 9 MockCapturer::MockCapturer() {} |
10 | 10 |
11 MockCapturer::~MockCapturer() {} | 11 MockCapturer::~MockCapturer() {} |
12 | 12 |
13 MockCurtain::MockCurtain() { } | 13 MockCurtain::MockCurtain() { } |
14 | 14 |
15 MockCurtain::~MockCurtain() { } | 15 MockCurtain::~MockCurtain() { } |
16 | 16 |
17 Curtain* Curtain::Create() { | 17 Curtain* Curtain::Create() { |
18 return new MockCurtain(); | 18 return new MockCurtain(); |
19 } | 19 } |
20 | 20 |
21 MockChromotingHostContext::MockChromotingHostContext() | 21 MockChromotingHostContext::MockChromotingHostContext() |
22 : ChromotingHostContext(NULL) {} | 22 : ChromotingHostContext(NULL) {} |
23 | 23 |
24 MockChromotingHostContext::~MockChromotingHostContext() {} | 24 MockChromotingHostContext::~MockChromotingHostContext() {} |
25 | 25 |
| 26 MockClientSessionEventHandler::MockClientSessionEventHandler() {} |
| 27 |
| 28 MockClientSessionEventHandler::~MockClientSessionEventHandler() {} |
| 29 |
26 } // namespace remoting | 30 } // namespace remoting |
OLD | NEW |