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

Unified Diff: remoting/host/desktop_environment.h

Issue 10790075: Rename Capturer to VideoFrameCapturer. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebased. Created 8 years, 5 months 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « remoting/host/client_session_unittest.cc ('k') | remoting/host/desktop_environment.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/desktop_environment.h
diff --git a/remoting/host/desktop_environment.h b/remoting/host/desktop_environment.h
index 417bec2e8c7ae4f53324ab6ca1549b21030fad23..d0e05864855a305b7655b6824ec0bfd3d33dfda9 100644
--- a/remoting/host/desktop_environment.h
+++ b/remoting/host/desktop_environment.h
@@ -14,13 +14,13 @@
namespace remoting {
class AudioCapturer;
-class Capturer;
class ChromotingHostContext;
+class VideoFrameCapturer;
namespace protocol {
class ClipboardStub;
class HostEventStub;
-};
+}
class DesktopEnvironment {
public:
@@ -34,13 +34,13 @@ class DesktopEnvironment {
static scoped_ptr<DesktopEnvironment> CreateFake(
ChromotingHostContext* context,
- scoped_ptr<Capturer> capturer,
+ scoped_ptr<VideoFrameCapturer> capturer,
scoped_ptr<EventExecutor> event_executor,
scoped_ptr<AudioCapturer> audio_capturer);
virtual ~DesktopEnvironment();
- Capturer* capturer() const { return capturer_.get(); }
+ VideoFrameCapturer* capturer() const { return capturer_.get(); }
EventExecutor* event_executor() const { return event_executor_.get(); }
AudioCapturer* audio_capturer() const { return audio_capturer_.get(); }
void OnSessionStarted(scoped_ptr<protocol::ClipboardStub> client_clipboard);
@@ -48,7 +48,7 @@ class DesktopEnvironment {
private:
DesktopEnvironment(ChromotingHostContext* context,
- scoped_ptr<Capturer> capturer,
+ scoped_ptr<VideoFrameCapturer> capturer,
scoped_ptr<EventExecutor> event_executor,
scoped_ptr<AudioCapturer> audio_capturer);
@@ -57,7 +57,7 @@ class DesktopEnvironment {
ChromotingHostContext* context_;
// Used to capture video to deliver to clients.
- scoped_ptr<Capturer> capturer_;
+ scoped_ptr<VideoFrameCapturer> capturer_;
// Used to capture audio to deliver to clients.
scoped_ptr<AudioCapturer> audio_capturer_;
« no previous file with comments | « remoting/host/client_session_unittest.cc ('k') | remoting/host/desktop_environment.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698