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

Side by Side Diff: content/public/common/gpu_info.h

Issue 10915189: Show gpu process sandbox status in the about:gpu page. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Removed .gitmodules. Created 8 years, 3 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 | Annotate | Revision Log
« no previous file with comments | « content/gpu/gpu_main.cc ('k') | content/public/common/gpu_info.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) 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 #ifndef CONTENT_PUBLIC_COMMON_GPU_INFO_H_ 5 #ifndef CONTENT_PUBLIC_COMMON_GPU_INFO_H_
6 #define CONTENT_PUBLIC_COMMON_GPU_INFO_H_ 6 #define CONTENT_PUBLIC_COMMON_GPU_INFO_H_
7 7
8 // Provides access to the GPU information for the system 8 // Provides access to the GPU information for the system
9 // on which chrome is currently running. 9 // on which chrome is currently running.
10 10
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 bool can_lose_context; 97 bool can_lose_context;
98 98
99 // Whether gpu or driver is accessible. 99 // Whether gpu or driver is accessible.
100 bool gpu_accessible; 100 bool gpu_accessible;
101 101
102 // By default all values are 0. 102 // By default all values are 0.
103 GpuPerformanceStats performance_stats; 103 GpuPerformanceStats performance_stats;
104 104
105 bool software_rendering; 105 bool software_rendering;
106 106
107 // Whether the gpu process is running in a sandbox.
108 bool sandboxed;
109
107 #if defined(OS_WIN) 110 #if defined(OS_WIN)
108 // The information returned by the DirectX Diagnostics Tool. 111 // The information returned by the DirectX Diagnostics Tool.
109 DxDiagNode dx_diagnostics; 112 DxDiagNode dx_diagnostics;
110 #endif 113 #endif
111 }; 114 };
112 115
113 } // namespace content 116 } // namespace content
114 117
115 #endif // CONTENT_PUBLIC_COMMON_GPU_INFO_H_ 118 #endif // CONTENT_PUBLIC_COMMON_GPU_INFO_H_
OLDNEW
« no previous file with comments | « content/gpu/gpu_main.cc ('k') | content/public/common/gpu_info.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698