OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // This class is an implementation of the ChromotingView using Pepper devices | 5 // This class is an implementation of the ChromotingView using Pepper devices |
6 // as the backing stores. The public APIs to this class are thread-safe. | 6 // as the backing stores. The public APIs to this class are thread-safe. |
7 // Calls will dispatch any interaction with the pepper API onto the pepper | 7 // Calls will dispatch any interaction with the pepper API onto the pepper |
8 // main thread. | 8 // main thread. |
9 // | 9 // |
10 // TODO(ajwong): We need to better understand the threading semantics of this | 10 // TODO(ajwong): We need to better understand the threading semantics of this |
11 // class. Currently, we're just going to always run everything on the pepper | 11 // class. Currently, we're just going to always run everything on the pepper |
12 // main thread. Is this smart? | 12 // main thread. Is this smart? |
13 | 13 |
14 #ifndef REMOTING_CLIENT_PLUGIN_PEPPER_VIEW_H_ | 14 #ifndef REMOTING_CLIENT_PLUGIN_PEPPER_VIEW_H_ |
15 #define REMOTING_CLIENT_PLUGIN_PEPPER_VIEW_H_ | 15 #define REMOTING_CLIENT_PLUGIN_PEPPER_VIEW_H_ |
16 | 16 |
17 #include "base/scoped_ptr.h" | 17 #include "base/scoped_ptr.h" |
18 #include "base/task.h" | 18 #include "base/task.h" |
19 #include "media/base/video_frame.h" | 19 #include "media/base/video_frame.h" |
20 #include "remoting/client/chromoting_view.h" | 20 #include "remoting/client/chromoting_view.h" |
21 #include "third_party/ppapi/cpp/device_context_2d.h" | 21 #include "third_party/ppapi/cpp/graphics_2d.h" |
22 | 22 |
23 namespace remoting { | 23 namespace remoting { |
24 | 24 |
25 class ChromotingInstance; | 25 class ChromotingInstance; |
26 | 26 |
27 class PepperView : public ChromotingView { | 27 class PepperView : public ChromotingView { |
28 public: | 28 public: |
29 // Constructs a PepperView that draws to the |rendering_device|. The | 29 // Constructs a PepperView that draws to the |rendering_device|. The |
30 // |rendering_device| instance must outlive this class. | 30 // |rendering_device| instance must outlive this class. |
31 // | 31 // |
(...skipping 17 matching lines...) Expand all Loading... |
49 private: | 49 private: |
50 void OnPaintDone(); | 50 void OnPaintDone(); |
51 void OnPartialDecodeDone(); | 51 void OnPartialDecodeDone(); |
52 void OnDecodeDone(); | 52 void OnDecodeDone(); |
53 | 53 |
54 // Reference to the creating plugin instance. Needed for interacting with | 54 // Reference to the creating plugin instance. Needed for interacting with |
55 // pepper. Marking explciitly as const since it must be initialized at | 55 // pepper. Marking explciitly as const since it must be initialized at |
56 // object creation, and never change. | 56 // object creation, and never change. |
57 ChromotingInstance* const instance_; | 57 ChromotingInstance* const instance_; |
58 | 58 |
59 pp::DeviceContext2D device_context_; | 59 pp::Graphics2D device_context_; |
60 | 60 |
61 int viewport_x_; | 61 int viewport_x_; |
62 int viewport_y_; | 62 int viewport_y_; |
63 int viewport_width_; | 63 int viewport_width_; |
64 int viewport_height_; | 64 int viewport_height_; |
65 | 65 |
66 bool is_static_fill_; | 66 bool is_static_fill_; |
67 uint32 static_fill_color_; | 67 uint32 static_fill_color_; |
68 | 68 |
69 DISALLOW_COPY_AND_ASSIGN(PepperView); | 69 DISALLOW_COPY_AND_ASSIGN(PepperView); |
70 }; | 70 }; |
71 | 71 |
72 } // namespace remoting | 72 } // namespace remoting |
73 | 73 |
74 DISABLE_RUNNABLE_METHOD_REFCOUNT(remoting::PepperView); | 74 DISABLE_RUNNABLE_METHOD_REFCOUNT(remoting::PepperView); |
75 | 75 |
76 #endif // REMOTING_CLIENT_PLUGIN_PEPPER_VIEW_H_ | 76 #endif // REMOTING_CLIENT_PLUGIN_PEPPER_VIEW_H_ |
OLD | NEW |