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 |
| 17 MockEventExecutor::MockEventExecutor() {} |
| 18 |
| 19 MockEventExecutor::~MockEventExecutor() {} |
16 | 20 |
17 Curtain* Curtain::Create() { | 21 Curtain* Curtain::Create() { |
18 return new MockCurtain(); | 22 return new MockCurtain(); |
19 } | 23 } |
20 | 24 |
21 MockChromotingHostContext::MockChromotingHostContext() | 25 MockChromotingHostContext::MockChromotingHostContext() |
22 : ChromotingHostContext(NULL) {} | 26 : ChromotingHostContext(NULL) {} |
23 | 27 |
24 MockChromotingHostContext::~MockChromotingHostContext() {} | 28 MockChromotingHostContext::~MockChromotingHostContext() {} |
25 | 29 |
26 MockClientSessionEventHandler::MockClientSessionEventHandler() {} | 30 MockClientSessionEventHandler::MockClientSessionEventHandler() {} |
27 | 31 |
28 MockClientSessionEventHandler::~MockClientSessionEventHandler() {} | 32 MockClientSessionEventHandler::~MockClientSessionEventHandler() {} |
29 | 33 |
| 34 MockUserAuthenticator::MockUserAuthenticator() {} |
| 35 |
| 36 MockUserAuthenticator::~MockUserAuthenticator() {} |
| 37 |
30 } // namespace remoting | 38 } // namespace remoting |
OLD | NEW |