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

Unified Diff: remoting/client/x11_view.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/x11_client.cc ('k') | remoting/client/x11_view.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/client/x11_view.h
diff --git a/remoting/client/x11_view.h b/remoting/client/x11_view.h
new file mode 100644
index 0000000000000000000000000000000000000000..1959e1847bc397f55d318e3edd4f5e59ad8eb6fc
--- /dev/null
+++ b/remoting/client/x11_view.h
@@ -0,0 +1,56 @@
+// Copyright (c) 2010 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef REMOTING_CLIENT_X11_VIEW_H_
+#define REMOTING_CLIENT_X11_VIEW_H_
+
+#include "base/basictypes.h"
+#include "base/scoped_ptr.h"
+#include "media/base/video_frame.h"
+#include "remoting/client/decoder.h"
+#include "remoting/client/chromoting_view.h"
+
+typedef struct _XDisplay Display;
+
+namespace remoting {
+
+// A ChromotingView implemented using X11 and XRender.
+class X11View : public ChromotingView {
+ public:
+ X11View(Display* display, int window, int width, int height);
+
+ virtual ~X11View();
+
+ // ChromotingView implementations.
+ virtual void Paint();
+ virtual void HandleBeginUpdateStream(HostMessage* msg);
+ virtual void HandleUpdateStreamPacket(HostMessage* msg);
+ virtual void HandleEndUpdateStream(HostMessage* msg) ;
+
+ private:
+ void InitPaintTarget();
+ void OnPartialDecodeDone();
+ void OnDecodeDone();
+
+ Display* display_;
+ int window_;
+ int width_;
+ int height_;
+
+ // A picture created in the X server that represents drawing area of the
+ // window.
+ int picture_;
+
+ scoped_refptr<media::VideoFrame> frame_;
+ UpdatedRects update_rects_;
+ UpdatedRects all_update_rects_;
+
+ scoped_ptr<Decoder> decoder_;
+
+ DISALLOW_COPY_AND_ASSIGN(X11View);
+};
+
+} // namespace remoting
+
+#endif // REMOTING_CLIENT_X11_VIEW_H_
« no previous file with comments | « remoting/client/x11_client.cc ('k') | remoting/client/x11_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698