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

Unified Diff: chrome/renderer/gpu_channel_host.h

Issue 5612002: Blacklist bad GPU drivers: currenly we disable all gpu related features if th... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 years 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 side-by-side diff with in-line comments
Download patch
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_;

Powered by Google App Engine
This is Rietveld 408576698