| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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" | 7 #include "base/message_loop_proxy.h" |
| 8 #include "net/base/ip_endpoint.h" | 8 #include "net/base/ip_endpoint.h" |
| 9 #include "remoting/proto/event.pb.h" | 9 #include "remoting/proto/event.pb.h" |
| 10 #include "remoting/protocol/transport.h" | 10 #include "remoting/protocol/transport.h" |
| 11 | 11 |
| 12 namespace remoting { | 12 namespace remoting { |
| 13 | 13 |
| 14 MockCapturer::MockCapturer() {} | 14 MockVideoFrameCapturer::MockVideoFrameCapturer() {} |
| 15 | 15 |
| 16 MockCapturer::~MockCapturer() {} | 16 MockVideoFrameCapturer::~MockVideoFrameCapturer() {} |
| 17 | 17 |
| 18 MockCurtain::MockCurtain() {} | 18 MockCurtain::MockCurtain() {} |
| 19 | 19 |
| 20 MockCurtain::~MockCurtain() {} | 20 MockCurtain::~MockCurtain() {} |
| 21 | 21 |
| 22 Curtain* Curtain::Create() { | 22 Curtain* Curtain::Create() { |
| 23 return new MockCurtain(); | 23 return new MockCurtain(); |
| 24 } | 24 } |
| 25 | 25 |
| 26 MockEventExecutor::MockEventExecutor() {} | 26 MockEventExecutor::MockEventExecutor() {} |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 | 68 |
| 69 MockHostStatusObserver::MockHostStatusObserver() {} | 69 MockHostStatusObserver::MockHostStatusObserver() {} |
| 70 | 70 |
| 71 MockHostStatusObserver::~MockHostStatusObserver() {} | 71 MockHostStatusObserver::~MockHostStatusObserver() {} |
| 72 | 72 |
| 73 MockUserAuthenticator::MockUserAuthenticator() {} | 73 MockUserAuthenticator::MockUserAuthenticator() {} |
| 74 | 74 |
| 75 MockUserAuthenticator::~MockUserAuthenticator() {} | 75 MockUserAuthenticator::~MockUserAuthenticator() {} |
| 76 | 76 |
| 77 } // namespace remoting | 77 } // namespace remoting |
| OLD | NEW |