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

Unified Diff: remoting/host/screen_recorder.h

Issue 10870071: Renamed Encoder -> VideoEncoder. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed comments Created 8 years, 4 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/chromoting_host.cc ('k') | remoting/host/screen_recorder.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/screen_recorder.h
diff --git a/remoting/host/screen_recorder.h b/remoting/host/screen_recorder.h
index 97a811bf8b511246be1e9ddcaad658986ada1393..07028d3ffbc55de1ee85f9d224385ae9f12f6fb2 100644
--- a/remoting/host/screen_recorder.h
+++ b/remoting/host/screen_recorder.h
@@ -82,7 +82,7 @@ class ScreenRecorder : public base::RefCountedThreadSafe<ScreenRecorder> {
scoped_refptr<base::SingleThreadTaskRunner> encode_task_runner,
scoped_refptr<base::SingleThreadTaskRunner> network_task_runner,
VideoFrameCapturer* capturer,
- Encoder* encoder);
+ VideoEncoder* encoder);
// Start recording.
void Start();
@@ -109,7 +109,7 @@ class ScreenRecorder : public base::RefCountedThreadSafe<ScreenRecorder> {
// Getters for capturer and encoder.
VideoFrameCapturer* capturer();
- Encoder* encoder();
+ VideoEncoder* encoder();
bool is_recording();
@@ -166,7 +166,7 @@ class ScreenRecorder : public base::RefCountedThreadSafe<ScreenRecorder> {
// Reference to the encoder. This member is always accessed on the encode
// thread.
- scoped_ptr<Encoder> encoder_;
+ scoped_ptr<VideoEncoder> encoder_;
// A list of clients connected to this hosts.
// This member is always accessed on the network thread.
« no previous file with comments | « remoting/host/chromoting_host.cc ('k') | remoting/host/screen_recorder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698