// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "remoting/host/host_mock_objects.h" #include "base/single_thread_task_runner.h" #include "net/base/ip_endpoint.h" #include "remoting/base/auto_thread_task_runner.h" #include "remoting/codec/audio_encoder.h" #include "remoting/codec/video_encoder.h" #include "remoting/host/audio_capturer.h" #include "remoting/host/input_injector.h" #include "remoting/proto/event.pb.h" #include "remoting/proto/video.pb.h" #include "remoting/protocol/transport.h" #include "third_party/webrtc/modules/desktop_capture/desktop_capturer.h" #include "third_party/webrtc/modules/desktop_capture/desktop_frame.h" namespace remoting { MockDesktopEnvironment::MockDesktopEnvironment() {} MockDesktopEnvironment::~MockDesktopEnvironment() {} scoped_ptr MockDesktopEnvironment::CreateAudioCapturer() { return make_scoped_ptr(CreateAudioCapturerPtr()); } scoped_ptr MockDesktopEnvironment::CreateInputInjector() { return make_scoped_ptr(CreateInputInjectorPtr()); } scoped_ptr MockDesktopEnvironment::CreateScreenControls() { return make_scoped_ptr(CreateScreenControlsPtr()); } scoped_ptr MockDesktopEnvironment::CreateVideoCapturer() { return make_scoped_ptr(CreateVideoCapturerPtr()); } scoped_ptr MockDesktopEnvironment::CreateMouseCursorMonitor() { return make_scoped_ptr(CreateMouseCursorMonitorPtr()); } MockDesktopEnvironmentFactory::MockDesktopEnvironmentFactory() {} MockDesktopEnvironmentFactory::~MockDesktopEnvironmentFactory() {} scoped_ptr MockDesktopEnvironmentFactory::Create( base::WeakPtr client_session_control) { return make_scoped_ptr(CreatePtr()); } MockInputInjector::MockInputInjector() {} MockInputInjector::~MockInputInjector() {} void MockInputInjector::Start( scoped_ptr client_clipboard) { StartPtr(client_clipboard.get()); } MockClientSessionControl::MockClientSessionControl() {} MockClientSessionControl::~MockClientSessionControl() {} MockClientSessionEventHandler::MockClientSessionEventHandler() {} MockClientSessionEventHandler::~MockClientSessionEventHandler() {} MockHostStatusObserver::MockHostStatusObserver() {} MockHostStatusObserver::~MockHostStatusObserver() {} MockGnubbyAuthHandler::MockGnubbyAuthHandler() {} MockGnubbyAuthHandler::~MockGnubbyAuthHandler() {} void MockGnubbyAuthHandler::SetSendMessageCallback( const GnubbyAuthHandler::SendMessageCallback& callback) { callback_ = callback; } const GnubbyAuthHandler::SendMessageCallback& MockGnubbyAuthHandler::GetSendMessageCallback() { return callback_; } MockMouseCursorMonitor::MockMouseCursorMonitor() {} MockMouseCursorMonitor::~MockMouseCursorMonitor() {} } // namespace remoting