OLD | NEW |
---|---|
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #ifndef CONTENT_COMMON_GPU_GPU_CHANNEL_MANAGER_H_ | 5 #ifndef CONTENT_COMMON_GPU_GPU_CHANNEL_MANAGER_H_ |
6 #define CONTENT_COMMON_GPU_GPU_CHANNEL_MANAGER_H_ | 6 #define CONTENT_COMMON_GPU_GPU_CHANNEL_MANAGER_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "base/hash_tables.h" | 9 #include "base/hash_tables.h" |
10 #include "base/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
11 #include "base/memory/scoped_ptr.h" | |
11 #include "base/memory/weak_ptr.h" | 12 #include "base/memory/weak_ptr.h" |
12 #include "base/message_loop_proxy.h" | 13 #include "base/message_loop_proxy.h" |
13 #include "build/build_config.h" | 14 #include "build/build_config.h" |
14 #include "ipc/ipc_channel.h" | 15 #include "ipc/ipc_channel.h" |
15 #include "ipc/ipc_message.h" | 16 #include "ipc/ipc_message.h" |
16 #include "ui/gfx/native_widget_types.h" | 17 #include "ui/gfx/native_widget_types.h" |
17 | 18 |
19 #include <vector> | |
20 | |
18 namespace base { | 21 namespace base { |
19 class WaitableEvent; | 22 class WaitableEvent; |
20 } | 23 } |
21 | 24 |
22 namespace IPC { | 25 namespace IPC { |
23 struct ChannelHandle; | 26 struct ChannelHandle; |
24 } | 27 } |
25 | 28 |
26 class ChildThread; | 29 class ChildThread; |
27 class GpuChannel; | 30 class GpuChannel; |
28 class GpuWatchdog; | 31 class GpuWatchdog; |
32 class GpuMemoryManager; | |
29 struct GPUCreateCommandBufferConfig; | 33 struct GPUCreateCommandBufferConfig; |
30 | 34 |
31 // A GpuChannelManager is a thread responsible for issuing rendering commands | 35 // A GpuChannelManager is a thread responsible for issuing rendering commands |
32 // managing the lifetimes of GPU channels and forwarding IPC requests from the | 36 // managing the lifetimes of GPU channels and forwarding IPC requests from the |
33 // browser process to them based on the corresponding renderer ID. | 37 // browser process to them based on the corresponding renderer ID. |
34 // | 38 // |
35 // A GpuChannelManager can also be hosted in the browser process in single | 39 // A GpuChannelManager can also be hosted in the browser process in single |
36 // process or in-process GPU modes. In this case there is no corresponding | 40 // process or in-process GPU modes. In this case there is no corresponding |
37 // GpuChildThread and this is the reason the GpuChildThread is referenced via | 41 // GpuChildThread and this is the reason the GpuChildThread is referenced via |
38 // a pointer to IPC::Message::Sender, which can be implemented by other hosts | 42 // a pointer to IPC::Message::Sender, which can be implemented by other hosts |
(...skipping 18 matching lines...) Expand all Loading... | |
57 virtual bool Send(IPC::Message* msg) OVERRIDE; | 61 virtual bool Send(IPC::Message* msg) OVERRIDE; |
58 | 62 |
59 void LoseAllContexts(); | 63 void LoseAllContexts(); |
60 | 64 |
61 base::WeakPtrFactory<GpuChannelManager> weak_factory_; | 65 base::WeakPtrFactory<GpuChannelManager> weak_factory_; |
62 | 66 |
63 int GenerateRouteID(); | 67 int GenerateRouteID(); |
64 void AddRoute(int32 routing_id, IPC::Channel::Listener* listener); | 68 void AddRoute(int32 routing_id, IPC::Channel::Listener* listener); |
65 void RemoveRoute(int32 routing_id); | 69 void RemoveRoute(int32 routing_id); |
66 | 70 |
71 GpuMemoryManager* GetGpuMemoryManager() { return gpu_memory_manager_.get(); } | |
nduca
2012/01/27 10:10:13
Is this our convention in chrome? I thought it was
| |
72 | |
67 GpuChannel* LookupChannel(int32 client_id); | 73 GpuChannel* LookupChannel(int32 client_id); |
74 std::vector<GpuChannel*> GetChannels() const; | |
68 | 75 |
69 private: | 76 private: |
70 // Message handlers. | 77 // Message handlers. |
71 void OnEstablishChannel(int client_id, int share_client_id); | 78 void OnEstablishChannel(int client_id, int share_client_id); |
72 void OnCloseChannel(const IPC::ChannelHandle& channel_handle); | 79 void OnCloseChannel(const IPC::ChannelHandle& channel_handle); |
73 void OnVisibilityChanged( | 80 void OnVisibilityChanged( |
74 int32 render_view_id, int32 client_id, bool visible); | 81 int32 render_view_id, int32 client_id, bool visible); |
75 void OnCreateViewCommandBuffer( | 82 void OnCreateViewCommandBuffer( |
76 gfx::PluginWindowHandle window, | 83 gfx::PluginWindowHandle window, |
77 int32 render_view_id, | 84 int32 render_view_id, |
78 int32 client_id, | 85 int32 client_id, |
79 const GPUCreateCommandBufferConfig& init_params); | 86 const GPUCreateCommandBufferConfig& init_params); |
80 | 87 |
81 void OnLoseAllContexts(); | 88 void OnLoseAllContexts(); |
82 | 89 |
83 scoped_refptr<base::MessageLoopProxy> io_message_loop_; | 90 scoped_refptr<base::MessageLoopProxy> io_message_loop_; |
84 base::WaitableEvent* shutdown_event_; | 91 base::WaitableEvent* shutdown_event_; |
85 | 92 |
86 // Used to send and receive IPC messages from the browser process. | 93 // Used to send and receive IPC messages from the browser process. |
87 ChildThread* gpu_child_thread_; | 94 ChildThread* gpu_child_thread_; |
88 | 95 |
89 // These objects manage channels to individual renderer processes there is | 96 // These objects manage channels to individual renderer processes there is |
90 // one channel for each renderer process that has connected to this GPU | 97 // one channel for each renderer process that has connected to this GPU |
91 // process. | 98 // process. |
92 typedef base::hash_map<int, scoped_refptr<GpuChannel> > GpuChannelMap; | 99 typedef base::hash_map<int, scoped_refptr<GpuChannel> > GpuChannelMap; |
93 GpuChannelMap gpu_channels_; | 100 GpuChannelMap gpu_channels_; |
101 scoped_ptr<GpuMemoryManager> gpu_memory_manager_; | |
94 GpuWatchdog* watchdog_; | 102 GpuWatchdog* watchdog_; |
95 | 103 |
96 DISALLOW_COPY_AND_ASSIGN(GpuChannelManager); | 104 DISALLOW_COPY_AND_ASSIGN(GpuChannelManager); |
97 }; | 105 }; |
98 | 106 |
99 #endif // CONTENT_COMMON_GPU_GPU_CHANNEL_MANAGER_H_ | 107 #endif // CONTENT_COMMON_GPU_GPU_CHANNEL_MANAGER_H_ |
OLD | NEW |