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

Side by Side Diff: chrome/browser/resources/gpu_internals/info_view.js

Issue 8430001: Add "Graphics backend" line to chrome://gpu-internals page (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 1 month 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/browser/ui/webui/gpu_internals_ui.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 description: 'Operating system', 54 description: 'Operating system',
55 value: clientInfo.operating_system 55 value: clientInfo.operating_system
56 }, 56 },
57 { 57 {
58 description: 'Software rendering list version', 58 description: 'Software rendering list version',
59 value: clientInfo.blacklist_version 59 value: clientInfo.blacklist_version
60 }, 60 },
61 { 61 {
62 description: 'ANGLE revision', 62 description: 'ANGLE revision',
63 value: clientInfo.angle_revision 63 value: clientInfo.angle_revision
64 },
65 {
66 description: 'Graphics backend',
nduca 2011/10/31 17:42:49 2D graphics backend? Graphics is a pretty overload
epoger 2011/10/31 17:50:04 Good point. Renamed to '2D graphics backend'.
67 value: clientInfo.graphics_backend
64 }]); 68 }]);
65 } else { 69 } else {
66 this.setText_('client-info', '... loading...'); 70 this.setText_('client-info', '... loading...');
67 } 71 }
68 72
69 // Feature map 73 // Feature map
70 var featureLabelMap = { 74 var featureLabelMap = {
71 '2d_canvas': 'Canvas', 75 '2d_canvas': 'Canvas',
72 '3d_css': '3D CSS', 76 '3d_css': '3D CSS',
73 'compositing': 'HTML Rendering', 77 'compositing': 'HTML Rendering',
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after
247 251
248 peg.innerHTML = ''; 252 peg.innerHTML = '';
249 peg.appendChild(template); 253 peg.appendChild(template);
250 } 254 }
251 }; 255 };
252 256
253 return { 257 return {
254 InfoView: InfoView 258 InfoView: InfoView
255 }; 259 };
256 }); 260 });
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/ui/webui/gpu_internals_ui.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698