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 #include "base/message_loop_proxy.h" |
| 8 |
7 namespace remoting { | 9 namespace remoting { |
8 | 10 |
9 MockCapturer::MockCapturer() {} | 11 MockCapturer::MockCapturer() {} |
10 | 12 |
11 MockCapturer::~MockCapturer() {} | 13 MockCapturer::~MockCapturer() {} |
12 | 14 |
13 MockCurtain::MockCurtain() {} | 15 MockCurtain::MockCurtain() {} |
14 | 16 |
15 MockCurtain::~MockCurtain() {} | 17 MockCurtain::~MockCurtain() {} |
16 | 18 |
(...skipping 22 matching lines...) Expand all Loading... |
39 } | 41 } |
40 | 42 |
41 MockLocalInputMonitor::MockLocalInputMonitor() {} | 43 MockLocalInputMonitor::MockLocalInputMonitor() {} |
42 | 44 |
43 MockLocalInputMonitor::~MockLocalInputMonitor() {} | 45 MockLocalInputMonitor::~MockLocalInputMonitor() {} |
44 | 46 |
45 LocalInputMonitor* LocalInputMonitor::Create() { | 47 LocalInputMonitor* LocalInputMonitor::Create() { |
46 return new MockLocalInputMonitor(); | 48 return new MockLocalInputMonitor(); |
47 } | 49 } |
48 | 50 |
49 MockChromotingHostContext::MockChromotingHostContext() {} | 51 MockChromotingHostContext::MockChromotingHostContext() |
| 52 : ChromotingHostContext(base::MessageLoopProxy::CreateForCurrentThread()) { |
| 53 } |
50 | 54 |
51 MockChromotingHostContext::~MockChromotingHostContext() {} | 55 MockChromotingHostContext::~MockChromotingHostContext() {} |
52 | 56 |
53 MockClientSessionEventHandler::MockClientSessionEventHandler() {} | 57 MockClientSessionEventHandler::MockClientSessionEventHandler() {} |
54 | 58 |
55 MockClientSessionEventHandler::~MockClientSessionEventHandler() {} | 59 MockClientSessionEventHandler::~MockClientSessionEventHandler() {} |
56 | 60 |
57 MockUserAuthenticator::MockUserAuthenticator() {} | 61 MockUserAuthenticator::MockUserAuthenticator() {} |
58 | 62 |
59 MockUserAuthenticator::~MockUserAuthenticator() {} | 63 MockUserAuthenticator::~MockUserAuthenticator() {} |
60 | 64 |
61 MockAccessVerifier::MockAccessVerifier() {} | 65 MockAccessVerifier::MockAccessVerifier() {} |
62 | 66 |
63 MockAccessVerifier::~MockAccessVerifier() {} | 67 MockAccessVerifier::~MockAccessVerifier() {} |
64 | 68 |
65 } // namespace remoting | 69 } // namespace remoting |
OLD | NEW |