| 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/single_thread_task_runner.h" | 7 #include "base/single_thread_task_runner.h" |
| 8 #include "net/base/ip_endpoint.h" | 8 #include "net/base/ip_endpoint.h" |
| 9 #include "remoting/base/auto_thread_task_runner.h" | 9 #include "remoting/base/auto_thread_task_runner.h" |
| 10 #include "remoting/codec/audio_encoder.h" | 10 #include "remoting/codec/audio_encoder.h" |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 MockHostStatusObserver::~MockHostStatusObserver() {} | 82 MockHostStatusObserver::~MockHostStatusObserver() {} |
| 83 | 83 |
| 84 MockGnubbyAuthHandler::MockGnubbyAuthHandler() {} | 84 MockGnubbyAuthHandler::MockGnubbyAuthHandler() {} |
| 85 | 85 |
| 86 MockGnubbyAuthHandler::~MockGnubbyAuthHandler() {} | 86 MockGnubbyAuthHandler::~MockGnubbyAuthHandler() {} |
| 87 | 87 |
| 88 MockMouseCursorMonitor::MockMouseCursorMonitor() {} | 88 MockMouseCursorMonitor::MockMouseCursorMonitor() {} |
| 89 | 89 |
| 90 MockMouseCursorMonitor::~MockMouseCursorMonitor() {} | 90 MockMouseCursorMonitor::~MockMouseCursorMonitor() {} |
| 91 | 91 |
| 92 MockVideoEncoder::MockVideoEncoder() { | |
| 93 } | |
| 94 | |
| 95 MockVideoEncoder::~MockVideoEncoder() { | |
| 96 } | |
| 97 | |
| 98 scoped_ptr<VideoPacket> MockVideoEncoder::Encode( | |
| 99 const webrtc::DesktopFrame& frame) { | |
| 100 return make_scoped_ptr(EncodePtr(frame)); | |
| 101 } | |
| 102 | |
| 103 } // namespace remoting | 92 } // namespace remoting |
| OLD | NEW |