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

Side by Side 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 unified diff | Download patch
« no previous file with comments | « remoting/client/x11_client.cc ('k') | remoting/client/x11_view.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef REMOTING_CLIENT_X11_VIEW_H_
6 #define REMOTING_CLIENT_X11_VIEW_H_
7
8 #include "base/basictypes.h"
9 #include "base/scoped_ptr.h"
10 #include "media/base/video_frame.h"
11 #include "remoting/client/decoder.h"
12 #include "remoting/client/chromoting_view.h"
13
14 typedef struct _XDisplay Display;
15
16 namespace remoting {
17
18 // A ChromotingView implemented using X11 and XRender.
19 class X11View : public ChromotingView {
20 public:
21 X11View(Display* display, int window, int width, int height);
22
23 virtual ~X11View();
24
25 // ChromotingView implementations.
26 virtual void Paint();
27 virtual void HandleBeginUpdateStream(HostMessage* msg);
28 virtual void HandleUpdateStreamPacket(HostMessage* msg);
29 virtual void HandleEndUpdateStream(HostMessage* msg) ;
30
31 private:
32 void InitPaintTarget();
33 void OnPartialDecodeDone();
34 void OnDecodeDone();
35
36 Display* display_;
37 int window_;
38 int width_;
39 int height_;
40
41 // A picture created in the X server that represents drawing area of the
42 // window.
43 int picture_;
44
45 scoped_refptr<media::VideoFrame> frame_;
46 UpdatedRects update_rects_;
47 UpdatedRects all_update_rects_;
48
49 scoped_ptr<Decoder> decoder_;
50
51 DISALLOW_COPY_AND_ASSIGN(X11View);
52 };
53
54 } // namespace remoting
55
56 #endif // REMOTING_CLIENT_X11_VIEW_H_
OLDNEW
« 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