| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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/fake_desktop_environment.h" | 5 #include "remoting/host/fake_desktop_environment.h" |
| 6 | 6 |
| 7 #include "remoting/host/audio_capturer.h" | 7 #include "remoting/host/audio_capturer.h" |
| 8 #include "remoting/host/fake_desktop_capturer.h" | |
| 9 #include "remoting/host/gnubby_auth_handler.h" | 8 #include "remoting/host/gnubby_auth_handler.h" |
| 10 #include "remoting/host/input_injector.h" | 9 #include "remoting/host/input_injector.h" |
| 10 #include "remoting/protocol/fake_desktop_capturer.h" |
| 11 | 11 |
| 12 namespace remoting { | 12 namespace remoting { |
| 13 | 13 |
| 14 FakeInputInjector::FakeInputInjector() {} | 14 FakeInputInjector::FakeInputInjector() {} |
| 15 FakeInputInjector::~FakeInputInjector() {} | 15 FakeInputInjector::~FakeInputInjector() {} |
| 16 | 16 |
| 17 void FakeInputInjector::Start( | 17 void FakeInputInjector::Start( |
| 18 scoped_ptr<protocol::ClipboardStub> client_clipboard) { | 18 scoped_ptr<protocol::ClipboardStub> client_clipboard) { |
| 19 } | 19 } |
| 20 | 20 |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 void FakeDesktopEnvironmentFactory::SetEnableCurtaining(bool enable) {} | 96 void FakeDesktopEnvironmentFactory::SetEnableCurtaining(bool enable) {} |
| 97 | 97 |
| 98 bool FakeDesktopEnvironmentFactory::SupportsAudioCapture() const { | 98 bool FakeDesktopEnvironmentFactory::SupportsAudioCapture() const { |
| 99 return false; | 99 return false; |
| 100 } | 100 } |
| 101 | 101 |
| 102 void FakeDesktopEnvironmentFactory::SetEnableGnubbyAuth(bool enable) {} | 102 void FakeDesktopEnvironmentFactory::SetEnableGnubbyAuth(bool enable) {} |
| 103 | 103 |
| 104 | 104 |
| 105 } // namespace remoting | 105 } // namespace remoting |
| OLD | NEW |