Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(193)

Side by Side Diff: remoting/host/fake_desktop_environment.cc

Issue 1462063004: Move VideoFramePump to remoting/protocol (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698