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

Side by Side Diff: content/browser/resources/gpu/info_view.js

Issue 164913002: Roll ANGLE deps, with new commit id versioning. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix iOS builds Created 6 years, 10 months 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
« no previous file with comments | « content/browser/gpu/gpu_internals_ui.cc ('k') | content/content_browser.gypi » ('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) 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
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
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 });
OLDNEW
« no previous file with comments | « content/browser/gpu/gpu_internals_ui.cc ('k') | content/content_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698