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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
80 extern const char kHungRendererOutstandingEventType[]; | 80 extern const char kHungRendererOutstandingEventType[]; |
81 extern const char kHungRendererLastEventType[]; | 81 extern const char kHungRendererLastEventType[]; |
82 extern const char kHungRendererReason[]; | 82 extern const char kHungRendererReason[]; |
83 | 83 |
84 // Third-party module crash keys are sent only on Windows. | 84 // Third-party module crash keys are sent only on Windows. |
85 extern const char kThirdPartyModulesLoaded[]; | 85 extern const char kThirdPartyModulesLoaded[]; |
86 extern const char kThirdPartyModulesNotLoaded[]; | 86 extern const char kThirdPartyModulesNotLoaded[]; |
87 | 87 |
88 // Whether the machine is enterprise managed (only sent on Windows). | 88 // Whether the machine is enterprise managed (only sent on Windows). |
89 extern const char kIsEnterpriseManaged[]; | 89 extern const char kIsEnterpriseManaged[]; |
| 90 |
| 91 // The "ap" (additional parameters) value in Chrome's ClientState registry key. |
| 92 extern const char kApValue[]; |
| 93 |
| 94 // The "name" value in Chrome's ClientState\cohort registry key. |
| 95 extern const char kCohortName[]; |
90 #endif | 96 #endif |
91 | 97 |
92 // Number of input event send IPC failures. Added to debug | 98 // Number of input event send IPC failures. Added to debug |
93 // crbug.com/615090. | 99 // crbug.com/615090. |
94 extern const char kInputEventFilterSendFailure[]; | 100 extern const char kInputEventFilterSendFailure[]; |
95 | 101 |
96 // The user's printers, up to kPrinterInfoCount. Should be set with | 102 // The user's printers, up to kPrinterInfoCount. Should be set with |
97 // ScopedPrinterInfo. | 103 // ScopedPrinterInfo. |
98 const size_t kPrinterInfoCount = 4; | 104 const size_t kPrinterInfoCount = 4; |
99 extern const char kPrinterInfo[]; | 105 extern const char kPrinterInfo[]; |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
139 // Numbers of active views. | 145 // Numbers of active views. |
140 extern const char kViewCount[]; | 146 extern const char kViewCount[]; |
141 | 147 |
142 // TEMPORARY: The encoder/frame details at the time a zero-length encoded frame | 148 // TEMPORARY: The encoder/frame details at the time a zero-length encoded frame |
143 // was encountered. http://crbug.com/519022 | 149 // was encountered. http://crbug.com/519022 |
144 extern const char kZeroEncodeDetails[]; | 150 extern const char kZeroEncodeDetails[]; |
145 | 151 |
146 } // namespace crash_keys | 152 } // namespace crash_keys |
147 | 153 |
148 #endif // CHROME_COMMON_CRASH_KEYS_H_ | 154 #endif // CHROME_COMMON_CRASH_KEYS_H_ |
OLD | NEW |