diff options
Diffstat (limited to 'remoting/host/desktop_environment.cc')
-rw-r--r-- | remoting/host/desktop_environment.cc | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/remoting/host/desktop_environment.cc b/remoting/host/desktop_environment.cc deleted file mode 100644 index d862e48..0000000 --- a/remoting/host/desktop_environment.cc +++ /dev/null @@ -1,35 +0,0 @@ -// 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/desktop_environment.h" - -#include "base/callback.h" -#include "base/compiler_specific.h" -#include "remoting/capturer/video_frame_capturer.h" -#include "remoting/host/audio_capturer.h" -#include "remoting/host/desktop_environment.h" -#include "remoting/host/event_executor.h" - -namespace remoting { - -DesktopEnvironment::DesktopEnvironment( - scoped_ptr<AudioCapturer> audio_capturer, - scoped_ptr<EventExecutor> event_executor, - scoped_ptr<VideoFrameCapturer> video_capturer) - : audio_capturer_(audio_capturer.Pass()), - event_executor_(event_executor.Pass()), - video_capturer_(video_capturer.Pass()) { -} - -DesktopEnvironment::~DesktopEnvironment() { -} - -void DesktopEnvironment::Start( - scoped_ptr<protocol::ClipboardStub> client_clipboard, - const std::string& client_jid, - const base::Closure& disconnect_callback) { - event_executor_->Start(client_clipboard.Pass()); -} - -} // namespace remoting |