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

Unified Diff: remoting/host/video_scheduler.h

Issue 11646010: Use more specific protocol::CursorShapeStub instead of protocol::ClientStub in VideoScheduler. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years 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 | « no previous file | remoting/host/video_scheduler.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/video_scheduler.h
diff --git a/remoting/host/video_scheduler.h b/remoting/host/video_scheduler.h
index 92b72f6d3346c37b4fb3b56bd2987e0480dc288e..61b9009593c8196a55b3be5318fbb87151d91a9b 100644
--- a/remoting/host/video_scheduler.h
+++ b/remoting/host/video_scheduler.h
@@ -29,8 +29,8 @@ class CursorShapeInfo;
class VideoFrameCapturer;
namespace protocol {
-class ClientStub;
class CursorShapeInfo;
+class CursorShapeStub;
class VideoStub;
} // namespace protocol
@@ -84,7 +84,7 @@ class VideoScheduler : public base::RefCountedThreadSafe<VideoScheduler>,
scoped_refptr<base::SingleThreadTaskRunner> network_task_runner,
VideoFrameCapturer* capturer,
scoped_ptr<VideoEncoder> encoder,
- protocol::ClientStub* client_stub,
+ protocol::CursorShapeStub* cursor_stub,
protocol::VideoStub* video_stub);
// VideoFrameCapturer::Delegate implementation.
@@ -115,7 +115,7 @@ class VideoScheduler : public base::RefCountedThreadSafe<VideoScheduler>,
scoped_refptr<base::SingleThreadTaskRunner> network_task_runner,
VideoFrameCapturer* capturer,
scoped_ptr<VideoEncoder> encoder,
- protocol::ClientStub* client_stub,
+ protocol::CursorShapeStub* cursor_stub,
protocol::VideoStub* video_stub);
virtual ~VideoScheduler();
@@ -173,7 +173,7 @@ class VideoScheduler : public base::RefCountedThreadSafe<VideoScheduler>,
// Interfaces through which video frames and cursor shapes are passed to the
// client. These members are always accessed on the network thread.
- protocol::ClientStub* cursor_stub_;
+ protocol::CursorShapeStub* cursor_stub_;
protocol::VideoStub* video_stub_;
// Timer used to schedule CaptureNextFrame().
« no previous file with comments | « no previous file | remoting/host/video_scheduler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698