| Index: content/browser/resources/gpu/info_view.js
|
| diff --git a/content/browser/resources/gpu/info_view.js b/content/browser/resources/gpu/info_view.js
|
| index e4d1795cf99174c27ae01fd3b74e4ae20ae2d628..40810054558b9c84f84fd70b8ccac85c1b463c89 100644
|
| --- a/content/browser/resources/gpu/info_view.js
|
| +++ b/content/browser/resources/gpu/info_view.js
|
| @@ -152,7 +152,6 @@ cr.define('gpu', function() {
|
| var problemsList = this.querySelector('.problems-list');
|
| var workaroundsDiv = this.querySelector('.workarounds-div');
|
| var workaroundsList = this.querySelector('.workarounds-list');
|
| - var performanceDiv = this.querySelector('.performance-div');
|
| var gpuInfo = browserBridge.gpuInfo;
|
| var i;
|
| if (gpuInfo) {
|
| @@ -223,13 +222,6 @@ cr.define('gpu', function() {
|
| else
|
| this.setTable_('basic-info', []);
|
|
|
| - if (gpuInfo.performance_info) {
|
| - performanceDiv.hidden = false;
|
| - this.setTable_('performance-info', gpuInfo.performance_info);
|
| - } else {
|
| - performanceDiv.hidden = true;
|
| - }
|
| -
|
| if (gpuInfo.diagnostics) {
|
| diagnosticsDiv.hidden = false;
|
| diagnosticsLoadingDiv.hidden = true;
|
|
|