diff options
Diffstat (limited to 'remoting/protocol/video_writer.h')
-rw-r--r-- | remoting/protocol/video_writer.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/remoting/protocol/video_writer.h b/remoting/protocol/video_writer.h index b9216c0..be4c715 100644 --- a/remoting/protocol/video_writer.h +++ b/remoting/protocol/video_writer.h @@ -19,7 +19,6 @@ namespace protocol { class Session; class SessionConfig; -// TODO(sergeyu): VideoWriter should implement VideoStub interface. class VideoWriter : public VideoStub { public: virtual ~VideoWriter(); @@ -29,6 +28,10 @@ class VideoWriter : public VideoStub { // Initializes the writer. virtual void Init(Session* session) = 0; + // Stops writing. Must be called on the network thread before this + // object is destroyed. + virtual void Close() = 0; + protected: VideoWriter() { } |