Index: chrome/renderer/gpu_channel_host.h |
=================================================================== |
--- chrome/renderer/gpu_channel_host.h (revision 68066) |
+++ chrome/renderer/gpu_channel_host.h (working copy) |
@@ -11,6 +11,7 @@ |
#include "base/hash_tables.h" |
#include "base/scoped_ptr.h" |
+#include "chrome/common/gpu_feature_flags.h" |
#include "chrome/common/gpu_info.h" |
#include "chrome/common/message_router.h" |
#include "gfx/native_widget_types.h" |
@@ -51,6 +52,10 @@ |
void set_gpu_info(const GPUInfo& gpu_info); |
const GPUInfo& gpu_info() const; |
+ // The GPU feature flags established by Browser using blacklist information. |
+ void set_gpu_feature_flags(const GpuFeatureFlags& gpu_feature_flags); |
+ const GpuFeatureFlags& gpu_feature_flags() const; |
+ |
// IPC::Channel::Listener implementation: |
virtual void OnMessageReceived(const IPC::Message& msg); |
virtual void OnChannelConnected(int32 peer_pid); |
@@ -85,6 +90,7 @@ |
State state_; |
GPUInfo gpu_info_; |
+ GpuFeatureFlags gpu_feature_flags_; |
scoped_ptr<IPC::SyncChannel> channel_; |