| Index: chrome/common/crash_keys.h
|
| diff --git a/chrome/common/crash_keys.h b/chrome/common/crash_keys.h
|
| index 941a828c2dde6e082b80120e269c5f26b86d21ce..45bb6779e935d38e8f5178d2a57de64806c83fe4 100644
|
| --- a/chrome/common/crash_keys.h
|
| +++ b/chrome/common/crash_keys.h
|
| @@ -18,6 +18,21 @@ size_t RegisterChromeCrashKeys();
|
| // The URL of the active tab.
|
| extern const char kActiveURL[];
|
|
|
| +// GPU information.
|
| +#if !defined(OS_ANDROID)
|
| +extern const char kGPUVendorID[];
|
| +extern const char kGPUDeviceID[];
|
| +#endif
|
| +extern const char kGPUDriverVersion[];
|
| +extern const char kGPUPixelShaderVersion[];
|
| +extern const char kGPUVertexShaderVersion[];
|
| +#if defined(OS_LINUX)
|
| +extern const char kGPUVendor[];
|
| +extern const char kGPURenderer[];
|
| +#elif defined(OS_MACOSX)
|
| +extern const char kGPUGLVersion[];
|
| +#endif
|
| +
|
| #if defined(OS_MACOSX)
|
| namespace mac {
|
|
|
|
|