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 #ifndef CHROME_BROWSER_GPU_PROCESS_HOST_H_ | 5 #ifndef CHROME_BROWSER_GPU_PROCESS_HOST_H_ |
6 #define CHROME_BROWSER_GPU_PROCESS_HOST_H_ | 6 #define CHROME_BROWSER_GPU_PROCESS_HOST_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <queue> | 9 #include <queue> |
10 | 10 |
11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
12 #include "base/non_thread_safe.h" | 12 #include "base/non_thread_safe.h" |
13 #include "base/ref_counted.h" | 13 #include "base/ref_counted.h" |
14 #include "chrome/browser/browser_child_process_host.h" | 14 #include "chrome/browser/browser_child_process_host.h" |
15 #include "gfx/native_widget_types.h" | 15 #include "gfx/native_widget_types.h" |
16 | 16 |
17 struct GpuHostMsg_AcceleratedSurfaceSetIOSurface_Params; | 17 struct GpuHostMsg_AcceleratedSurfaceSetIOSurface_Params; |
18 struct GpuHostMsg_AcceleratedSurfaceBuffersSwapped_Params; | 18 struct GpuHostMsg_AcceleratedSurfaceBuffersSwapped_Params; |
| 19 class GpuBlacklist; |
| 20 class GpuFeatureFlags; |
19 class GPUInfo; | 21 class GPUInfo; |
20 class ResourceMessageFilter; | 22 class ResourceMessageFilter; |
21 | 23 |
22 namespace gfx { | 24 namespace gfx { |
23 class Size; | 25 class Size; |
24 } | 26 } |
25 | 27 |
26 namespace IPC { | 28 namespace IPC { |
27 struct ChannelHandle; | 29 struct ChannelHandle; |
28 class Message; | 30 class Message; |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
96 const GpuHostMsg_AcceleratedSurfaceBuffersSwapped_Params& params); | 98 const GpuHostMsg_AcceleratedSurfaceBuffersSwapped_Params& params); |
97 #elif defined(OS_WIN) | 99 #elif defined(OS_WIN) |
98 void OnCreateCompositorHostWindow(int renderer_id, | 100 void OnCreateCompositorHostWindow(int renderer_id, |
99 int render_view_id, | 101 int render_view_id, |
100 IPC::Message* reply_message); | 102 IPC::Message* reply_message); |
101 #endif | 103 #endif |
102 | 104 |
103 // Sends the response for establish channel request to the renderer. | 105 // Sends the response for establish channel request to the renderer. |
104 void SendEstablishChannelReply(const IPC::ChannelHandle& channel, | 106 void SendEstablishChannelReply(const IPC::ChannelHandle& channel, |
105 const GPUInfo& gpu_info, | 107 const GPUInfo& gpu_info, |
| 108 const GpuFeatureFlags& gpu_feature_flags, |
106 ResourceMessageFilter* filter); | 109 ResourceMessageFilter* filter); |
107 // Sends the response for synchronization request to the renderer. | 110 // Sends the response for synchronization request to the renderer. |
108 void SendSynchronizationReply(IPC::Message* reply, | 111 void SendSynchronizationReply(IPC::Message* reply, |
109 ResourceMessageFilter* filter); | 112 ResourceMessageFilter* filter); |
110 | 113 |
111 // ResourceDispatcherHost::Receiver implementation: | 114 // ResourceDispatcherHost::Receiver implementation: |
112 virtual URLRequestContext* GetRequestContext( | 115 virtual URLRequestContext* GetRequestContext( |
113 uint32 request_id, | 116 uint32 request_id, |
114 const ViewHostMsg_Resource_Request& request_data); | 117 const ViewHostMsg_Resource_Request& request_data); |
115 | 118 |
116 virtual bool CanShutdown(); | 119 virtual bool CanShutdown(); |
117 virtual void OnChildDied(); | 120 virtual void OnChildDied(); |
118 virtual void OnProcessCrashed(); | 121 virtual void OnProcessCrashed(); |
119 | 122 |
120 bool CanLaunchGpuProcess() const; | 123 bool CanLaunchGpuProcess() const; |
121 bool LaunchGpuProcess(); | 124 bool LaunchGpuProcess(); |
122 | 125 |
| 126 bool LoadGpuBlacklist(); |
| 127 |
123 bool initialized_; | 128 bool initialized_; |
124 bool initialized_successfully_; | 129 bool initialized_successfully_; |
125 | 130 |
| 131 scoped_ptr<GpuBlacklist> gpu_blacklist_; |
| 132 |
126 // These are the channel requests that we have already sent to | 133 // These are the channel requests that we have already sent to |
127 // the GPU process, but haven't heard back about yet. | 134 // the GPU process, but haven't heard back about yet. |
128 std::queue<ChannelRequest> sent_requests_; | 135 std::queue<ChannelRequest> sent_requests_; |
129 | 136 |
130 // The pending synchronization requests we need to reply to. | 137 // The pending synchronization requests we need to reply to. |
131 std::queue<SynchronizationRequest> queued_synchronization_replies_; | 138 std::queue<SynchronizationRequest> queued_synchronization_replies_; |
132 | 139 |
133 DISALLOW_COPY_AND_ASSIGN(GpuProcessHost); | 140 DISALLOW_COPY_AND_ASSIGN(GpuProcessHost); |
134 }; | 141 }; |
135 | 142 |
136 #endif // CHROME_BROWSER_GPU_PROCESS_HOST_H_ | 143 #endif // CHROME_BROWSER_GPU_PROCESS_HOST_H_ |
OLD | NEW |