| 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 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 // Hung renderer crash reports are only sent on Windows. | 93 // Hung renderer crash reports are only sent on Windows. |
| 94 extern const char kHungRendererOutstandingAckCount[]; | 94 extern const char kHungRendererOutstandingAckCount[]; |
| 95 extern const char kHungRendererOutstandingEventType[]; | 95 extern const char kHungRendererOutstandingEventType[]; |
| 96 extern const char kHungRendererLastEventType[]; | 96 extern const char kHungRendererLastEventType[]; |
| 97 extern const char kHungRendererReason[]; | 97 extern const char kHungRendererReason[]; |
| 98 | 98 |
| 99 // Third-party module crash keys are sent only on Windows. | 99 // Third-party module crash keys are sent only on Windows. |
| 100 extern const char kThirdPartyModulesLoaded[]; | 100 extern const char kThirdPartyModulesLoaded[]; |
| 101 extern const char kThirdPartyModulesNotLoaded[]; | 101 extern const char kThirdPartyModulesNotLoaded[]; |
| 102 | 102 |
| 103 // Whether the machine is domain joined is only sent on Windows. | 103 // Whether the machine is enterprise managed (only sent on Windows). |
| 104 extern const char kEnrolledToDomain[]; | 104 extern const char kIsEnterpriseManaged[]; |
| 105 #endif | 105 #endif |
| 106 | 106 |
| 107 // Number of input event send IPC failures. Added to debug | 107 // Number of input event send IPC failures. Added to debug |
| 108 // crbug.com/615090. | 108 // crbug.com/615090. |
| 109 extern const char kInputEventFilterSendFailure[]; | 109 extern const char kInputEventFilterSendFailure[]; |
| 110 | 110 |
| 111 // The user's printers, up to kPrinterInfoCount. Should be set with | 111 // The user's printers, up to kPrinterInfoCount. Should be set with |
| 112 // ScopedPrinterInfo. | 112 // ScopedPrinterInfo. |
| 113 const size_t kPrinterInfoCount = 4; | 113 const size_t kPrinterInfoCount = 4; |
| 114 extern const char kPrinterInfo[]; | 114 extern const char kPrinterInfo[]; |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 154 // Numbers of active views. | 154 // Numbers of active views. |
| 155 extern const char kViewCount[]; | 155 extern const char kViewCount[]; |
| 156 | 156 |
| 157 // TEMPORARY: The encoder/frame details at the time a zero-length encoded frame | 157 // TEMPORARY: The encoder/frame details at the time a zero-length encoded frame |
| 158 // was encountered. http://crbug.com/519022 | 158 // was encountered. http://crbug.com/519022 |
| 159 extern const char kZeroEncodeDetails[]; | 159 extern const char kZeroEncodeDetails[]; |
| 160 | 160 |
| 161 } // namespace crash_keys | 161 } // namespace crash_keys |
| 162 | 162 |
| 163 #endif // CHROME_COMMON_CRASH_KEYS_H_ | 163 #endif // CHROME_COMMON_CRASH_KEYS_H_ |
| OLD | NEW |