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

Unified Diff: remoting/client/decoder_verbatim.h

Issue 2745006: Implement a chromoting client using X11 (Closed)
Patch Set: removed all.gyp Created 10 years, 6 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/client/decoder.h ('k') | remoting/client/decoder_verbatim.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/client/decoder_verbatim.h
diff --git a/remoting/client/decoder_verbatim.h b/remoting/client/decoder_verbatim.h
index 94d2f817a49147c2c72cc75f586efd38eae9c4f6..5d18a4809e4a290745efb48cd751f1a52ac5f932 100644
--- a/remoting/client/decoder_verbatim.h
+++ b/remoting/client/decoder_verbatim.h
@@ -11,19 +11,25 @@ namespace remoting {
class DecoderVerbatim : public Decoder {
public:
- DecoderVerbatim(PartialDecodeDoneCallback* partial_decode_done_callback,
- DecodeDoneCallback* decode_done_callback)
- : Decoder(partial_decode_done_callback, decode_done_callback) {
+ DecoderVerbatim() {
}
// Decoder implementations.
- virtual bool BeginDecode(scoped_refptr<media::VideoFrame> frame);
- virtual bool PartialDecode(chromotocol_pb::HostMessage* message);
+ virtual bool BeginDecode(scoped_refptr<media::VideoFrame> frame,
+ UpdatedRects* update_rects,
+ Task* partial_decode_done,
+ Task* decode_done);
+ virtual bool PartialDecode(HostMessage* message);
virtual void EndDecode();
private:
+ // Tasks to call when decode is done.
+ scoped_ptr<Task> partial_decode_done_;
+ scoped_ptr<Task> decode_done_;
+
// The video frame to write to.
scoped_refptr<media::VideoFrame> frame_;
+ UpdatedRects* updated_rects_;
DISALLOW_COPY_AND_ASSIGN(DecoderVerbatim);
};
« no previous file with comments | « remoting/client/decoder.h ('k') | remoting/client/decoder_verbatim.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698