| 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/base/capture_data.h" | 9 #include "remoting/base/capture_data.h" |
| 10 #include "remoting/proto/event.pb.h" | 10 #include "remoting/proto/event.pb.h" |
| 11 #include "remoting/protocol/transport.h" | 11 #include "remoting/protocol/transport.h" |
| 12 | 12 |
| 13 namespace remoting { | 13 namespace remoting { |
| 14 | 14 |
| 15 MockCapturer::MockCapturer() {} | 15 MockVideoFrameCapturer::MockVideoFrameCapturer() {} |
| 16 | 16 |
| 17 MockCapturer::~MockCapturer() {} | 17 MockVideoFrameCapturer::~MockVideoFrameCapturer() {} |
| 18 | 18 |
| 19 MockCaptureCompletedCallback::MockCaptureCompletedCallback() {} | 19 MockCaptureCompletedCallback::MockCaptureCompletedCallback() {} |
| 20 | 20 |
| 21 MockCaptureCompletedCallback::~MockCaptureCompletedCallback() {} | 21 MockCaptureCompletedCallback::~MockCaptureCompletedCallback() {} |
| 22 | 22 |
| 23 void MockCaptureCompletedCallback::CaptureCompleted( | 23 void MockCaptureCompletedCallback::CaptureCompleted( |
| 24 scoped_refptr<CaptureData> capture_data) { | 24 scoped_refptr<CaptureData> capture_data) { |
| 25 CaptureCompletedPtr(capture_data.get()); | 25 CaptureCompletedPtr(capture_data.get()); |
| 26 } | 26 } |
| 27 | 27 |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 | 70 |
| 71 MockHostStatusObserver::MockHostStatusObserver() {} | 71 MockHostStatusObserver::MockHostStatusObserver() {} |
| 72 | 72 |
| 73 MockHostStatusObserver::~MockHostStatusObserver() {} | 73 MockHostStatusObserver::~MockHostStatusObserver() {} |
| 74 | 74 |
| 75 MockUserAuthenticator::MockUserAuthenticator() {} | 75 MockUserAuthenticator::MockUserAuthenticator() {} |
| 76 | 76 |
| 77 MockUserAuthenticator::~MockUserAuthenticator() {} | 77 MockUserAuthenticator::~MockUserAuthenticator() {} |
| 78 | 78 |
| 79 } // namespace remoting | 79 } // namespace remoting |
| OLD | NEW |