| Index: chrome/browser/gpu_feature_checker.cc
|
| ===================================================================
|
| --- chrome/browser/gpu_feature_checker.cc (revision 153783)
|
| +++ chrome/browser/gpu_feature_checker.cc (working copy)
|
| @@ -18,7 +18,7 @@
|
| if (!manager->GpuAccessAllowed()) {
|
| feature_allowed = false;
|
| } else {
|
| - uint32 blacklist_type = manager->GetGpuFeatureType();
|
| + uint32 blacklist_type = manager->GetBlacklistedFeatures();
|
| if (blacklist_type & feature)
|
| feature_allowed = false;
|
| }
|
| @@ -48,7 +48,7 @@
|
| #endif
|
|
|
| content::GpuDataManager* manager = content::GpuDataManager::GetInstance();
|
| - if (manager->IsCompleteGPUInfoAvailable())
|
| + if (manager->IsCompleteGpuInfoAvailable())
|
| finalized = true;
|
|
|
| bool feature_allowed = IsFeatureAllowed(manager, feature_);
|
|
|