| Index: chrome/browser/ui/webui/gpu_internals_ui.cc
|
| diff --git a/chrome/browser/ui/webui/gpu_internals_ui.cc b/chrome/browser/ui/webui/gpu_internals_ui.cc
|
| index 216c5c8ac9e19696d00908271454efe91e5e6710..72f24828dcd7576c026c57ae607ad2f4e4a849d8 100644
|
| --- a/chrome/browser/ui/webui/gpu_internals_ui.cc
|
| +++ b/chrome/browser/ui/webui/gpu_internals_ui.cc
|
| @@ -382,10 +382,10 @@ void GpuMessageHandler::OnGpuInfoUpdate() {
|
| // Get GPU Info.
|
| DictionaryValue* gpu_info_val = GpuInfoToDict(gpu_info);
|
|
|
| - // Add in blacklisting reasons
|
| - Value* blacklisting_reasons = gpu_data_manager_->GetBlacklistingReasons();
|
| - if (blacklisting_reasons)
|
| - gpu_info_val->Set("blacklistingReasons", blacklisting_reasons);
|
| + // Add in blacklisting features
|
| + Value* feature_status = gpu_data_manager_->GetFeatureStatus();
|
| + if (feature_status)
|
| + gpu_info_val->Set("featureStatus", feature_status);
|
|
|
| // Send GPU Info to javascript.
|
| web_ui_->CallJavascriptFunction("browserBridge.onGpuInfoUpdate",
|
|
|