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

Unified Diff: content/browser/gpu/gpu_data_manager_impl.cc

Issue 10837006: Blacklist all GPU access on Lion with Intel HD 4000. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 5 months 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: content/browser/gpu/gpu_data_manager_impl.cc
===================================================================
--- content/browser/gpu/gpu_data_manager_impl.cc (revision 149004)
+++ content/browser/gpu/gpu_data_manager_impl.cc (working copy)
@@ -253,10 +253,6 @@
// special-casing this video card won't be necessary. See
// http://crbug.com/134015
if ((flags & content::GPU_FEATURE_TYPE_ACCELERATED_COMPOSITING) ||
- (gpu_info_.gpu.vendor_id == 0x8086 && // Intel
- gpu_info_.gpu.device_id == 0x0166) || // HD 4000
- (gpu_info_.gpu.vendor_id == 0x10de && // NVidia
- gpu_info_.gpu.device_id == 0x0fd5) || // GeForce GT 650M
CommandLine::ForCurrentProcess()->HasSwitch(
switches::kDisableAcceleratedCompositing)) {
if (!command_line->HasSwitch(

Powered by Google App Engine
This is Rietveld 408576698