| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 | 5 |
| 6 /** | 6 /** |
| 7 * @fileoverview This view displays information on the current GPU | 7 * @fileoverview This view displays information on the current GPU |
| 8 * hardware. Its primary usefulness is to allow users to copy-paste | 8 * hardware. Its primary usefulness is to allow users to copy-paste |
| 9 * their data in an easy to read format for bug reports. | 9 * their data in an easy to read format for bug reports. |
| 10 */ | 10 */ |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 }, | 57 }, |
| 58 { | 58 { |
| 59 description: 'Software rendering list version', | 59 description: 'Software rendering list version', |
| 60 value: clientInfo.blacklist_version | 60 value: clientInfo.blacklist_version |
| 61 }, | 61 }, |
| 62 { | 62 { |
| 63 description: 'Driver bug list version', | 63 description: 'Driver bug list version', |
| 64 value: clientInfo.driver_bug_list_version | 64 value: clientInfo.driver_bug_list_version |
| 65 }, | 65 }, |
| 66 { | 66 { |
| 67 description: 'ANGLE revision', | 67 description: 'ANGLE commit id', |
| 68 value: clientInfo.angle_revision | 68 value: clientInfo.angle_commit_id |
| 69 }, | 69 }, |
| 70 { | 70 { |
| 71 description: '2D graphics backend', | 71 description: '2D graphics backend', |
| 72 value: clientInfo.graphics_backend | 72 value: clientInfo.graphics_backend |
| 73 }, | 73 }, |
| 74 { | 74 { |
| 75 description: 'Command Line Args', | 75 description: 'Command Line Args', |
| 76 value: commandLineString | 76 value: commandLineString |
| 77 }]); | 77 }]); |
| 78 } else { | 78 } else { |
| (...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 322 | 322 |
| 323 peg.innerHTML = ''; | 323 peg.innerHTML = ''; |
| 324 peg.appendChild(template); | 324 peg.appendChild(template); |
| 325 } | 325 } |
| 326 }; | 326 }; |
| 327 | 327 |
| 328 return { | 328 return { |
| 329 InfoView: InfoView | 329 InfoView: InfoView |
| 330 }; | 330 }; |
| 331 }); | 331 }); |
| OLD | NEW |