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

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

Issue 2902773004: cc: Add finch feature flag for checker-imaging. (Closed)
Patch Set: pass Created 3 years, 7 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
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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 'flash_stage3d_baseline': 'Flash Stage3D Baseline profile', 86 'flash_stage3d_baseline': 'Flash Stage3D Baseline profile',
87 'texture_sharing': 'Texture Sharing', 87 'texture_sharing': 'Texture Sharing',
88 'video_decode': 'Video Decode', 88 'video_decode': 'Video Decode',
89 'video_encode': 'Video Encode', 89 'video_encode': 'Video Encode',
90 'panel_fitting': 'Panel Fitting', 90 'panel_fitting': 'Panel Fitting',
91 'rasterization': 'Rasterization', 91 'rasterization': 'Rasterization',
92 'multiple_raster_threads': 'Multiple Raster Threads', 92 'multiple_raster_threads': 'Multiple Raster Threads',
93 'native_gpu_memory_buffers': 'Native GpuMemoryBuffers', 93 'native_gpu_memory_buffers': 'Native GpuMemoryBuffers',
94 'vpx_decode': 'VPx Video Decode', 94 'vpx_decode': 'VPx Video Decode',
95 'webgl2': 'WebGL2', 95 'webgl2': 'WebGL2',
96 'checker_imaging': 'CheckerImaging',
96 }; 97 };
97 98
98 var statusMap = { 99 var statusMap = {
99 'disabled_software': { 100 'disabled_software': {
100 'label': 'Software only. Hardware acceleration disabled', 101 'label': 'Software only. Hardware acceleration disabled',
101 'class': 'feature-yellow' 102 'class': 'feature-yellow'
102 }, 103 },
103 'disabled_off': { 104 'disabled_off': {
104 'label': 'Disabled', 105 'label': 'Disabled',
105 'class': 'feature-red' 106 'class': 'feature-red'
(...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after
339 340
340 peg.innerHTML = ''; 341 peg.innerHTML = '';
341 peg.appendChild(template); 342 peg.appendChild(template);
342 } 343 }
343 }; 344 };
344 345
345 return { 346 return {
346 InfoView: InfoView 347 InfoView: InfoView
347 }; 348 };
348 }); 349 });
OLDNEW
« no previous file with comments | « content/browser/renderer_host/render_process_host_impl.cc ('k') | content/public/common/content_features.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698