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