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

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

Issue 10406011: ARM build fix. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 7 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/gpu/gpu_data_manager_impl.cc
===================================================================
--- content/browser/gpu/gpu_data_manager_impl.cc (revision 137161)
+++ content/browser/gpu/gpu_data_manager_impl.cc (working copy)
@@ -90,12 +90,10 @@
{
base::AutoLock auto_lock(gpu_info_lock_);
- if (gpu_info.gpu.vendor_id && gpu_info.gpu.device_id) {
+ if (gpu_info.gpu.vendor_id && gpu_info.gpu.device_id)
robdclark 2012/05/16 20:35:21 why not handle the blacklist by GL_VENDER/GL_RENDE
gpu_info_ = gpu_info;
- } else {
- gpu_info_.gpu_accessible = false;
+ else
gpu_info_.finalized = true;
- }
complete_gpu_info_available_ =
complete_gpu_info_available_ || gpu_info_.finalized;
complete_gpu_info_already_requested_ =
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698