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

Side by Side Diff: gpu/config/gpu_crash_keys.h

Issue 2751103008: gpu: Add a util method to set crash-keys from a GPUInfo. (Closed)
Patch Set: comment Created 3 years, 9 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 | « gpu/config/BUILD.gn ('k') | gpu/config/gpu_crash_keys.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2017 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef GPU_CONFIG_GPU_CRASH_KEYS_H_
6 #define GPU_CONFIG_GPU_CRASH_KEYS_H_
7
8 #include "build/build_config.h"
9
10 namespace gpu {
11 namespace crash_keys {
12
13 // Keys that can be used for crash reporting.
14 #if !defined(OS_ANDROID)
15 extern const char kGPUVendorID[];
16 extern const char kGPUDeviceID[];
17 #endif
18 extern const char kGPUDriverVersion[];
19 extern const char kGPUPixelShaderVersion[];
20 extern const char kGPUVertexShaderVersion[];
21 #if defined(OS_MACOSX)
22 extern const char kGPUGLVersion[];
23 #elif defined(OS_POSIX)
24 extern const char kGPUVendor[];
25 extern const char kGPURenderer[];
26 #endif
27 } // namespace crash_keys
28 } // namespace gpu
29
30 #endif // GPU_CONFIG_GPU_CRASH_KEYS_H_
OLDNEW
« no previous file with comments | « gpu/config/BUILD.gn ('k') | gpu/config/gpu_crash_keys.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698