Chromium Code Reviews

Unified Diff: chrome/renderer/render_thread.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.
Jump to:
View side-by-side diff with in-line comments
Index: chrome/renderer/render_thread.h
===================================================================
--- chrome/renderer/render_thread.h (revision 68066)
+++ chrome/renderer/render_thread.h (working copy)
@@ -16,6 +16,7 @@
#include "build/build_config.h"
#include "chrome/common/child_thread.h"
#include "chrome/common/css_colors.h"
+#include "chrome/common/gpu_feature_flags.h"
brettw 2010/12/03 00:11:38 Can the class be forward declared instead of intro
Zhenyao Mo 2010/12/03 18:29:57 Done.
#include "chrome/common/gpu_info.h"
#include "chrome/renderer/visitedlink_slave.h"
#include "gfx/native_widget_types.h"
@@ -311,7 +312,8 @@
void OnSpellCheckEnableAutoSpellCorrect(bool enable);
void OnGpuChannelEstablished(const IPC::ChannelHandle& channel_handle,
- const GPUInfo& gpu_info);
+ const GPUInfo& gpu_info,
+ const GpuFeatureFlags& gpu_feature_flags);
void OnSetPhishingModel(IPC::PlatformFileForTransit model_file);

Powered by Google App Engine