OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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 CHROME_COMMON_CRASH_KEYS_H_ | 5 #ifndef CHROME_COMMON_CRASH_KEYS_H_ |
6 #define CHROME_COMMON_CRASH_KEYS_H_ | 6 #define CHROME_COMMON_CRASH_KEYS_H_ |
7 | 7 |
8 #include <stddef.h> | 8 #include <stddef.h> |
9 | 9 |
10 #include <set> | 10 #include <set> |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
61 extern const char kExtensionID[]; | 61 extern const char kExtensionID[]; |
62 // The total number of installed extensions, recorded in case it exceeds | 62 // The total number of installed extensions, recorded in case it exceeds |
63 // kExtensionIDMaxCount. Also used in chrome/app, but defined here to avoid | 63 // kExtensionIDMaxCount. Also used in chrome/app, but defined here to avoid |
64 // a common->app dependency. | 64 // a common->app dependency. |
65 extern const char kNumExtensionsCount[]; | 65 extern const char kNumExtensionsCount[]; |
66 | 66 |
67 // Type of shutdown. The value is one of "close" for WINDOW_CLOSE, | 67 // Type of shutdown. The value is one of "close" for WINDOW_CLOSE, |
68 // "exit" for BROWSER_EXIT, or "end" for END_SESSION. | 68 // "exit" for BROWSER_EXIT, or "end" for END_SESSION. |
69 extern const char kShutdownType[]; | 69 extern const char kShutdownType[]; |
70 | 70 |
| 71 // Stack trace associated to the browser being unpinned and starting the |
| 72 // shutdown sequence. The value is set when we trigger a browser crash due to an |
| 73 // invalid attempt to Pin the browser process after that. |
| 74 extern const char kBrowserUnpinTrace[]; |
| 75 |
71 // GPU information. | 76 // GPU information. |
72 #if !defined(OS_ANDROID) | 77 #if !defined(OS_ANDROID) |
73 extern const char kGPUVendorID[]; | 78 extern const char kGPUVendorID[]; |
74 extern const char kGPUDeviceID[]; | 79 extern const char kGPUDeviceID[]; |
75 #endif | 80 #endif |
76 extern const char kGPUDriverVersion[]; | 81 extern const char kGPUDriverVersion[]; |
77 extern const char kGPUPixelShaderVersion[]; | 82 extern const char kGPUPixelShaderVersion[]; |
78 extern const char kGPUVertexShaderVersion[]; | 83 extern const char kGPUVertexShaderVersion[]; |
79 #if defined(OS_MACOSX) | 84 #if defined(OS_MACOSX) |
80 extern const char kGPUGLVersion[]; | 85 extern const char kGPUGLVersion[]; |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
148 // Numbers of active views. | 153 // Numbers of active views. |
149 extern const char kViewCount[]; | 154 extern const char kViewCount[]; |
150 | 155 |
151 // TEMPORARY: The encoder/frame details at the time a zero-length encoded frame | 156 // TEMPORARY: The encoder/frame details at the time a zero-length encoded frame |
152 // was encountered. http://crbug.com/519022 | 157 // was encountered. http://crbug.com/519022 |
153 extern const char kZeroEncodeDetails[]; | 158 extern const char kZeroEncodeDetails[]; |
154 | 159 |
155 } // namespace crash_keys | 160 } // namespace crash_keys |
156 | 161 |
157 #endif // CHROME_COMMON_CRASH_KEYS_H_ | 162 #endif // CHROME_COMMON_CRASH_KEYS_H_ |
OLD | NEW |