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