Chromium Code Reviews| 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 extern const char kDomainJoined[]; | |
|
sky
2016/11/17 20:34:18
'domain' is pretty obscure. Would kEnrolledInEnter
Georges Khalil
2016/11/17 20:47:06
This is really to know whether the machine is part
| |
| 98 #endif | 100 #endif |
| 99 | 101 |
| 100 // Number of input event send IPC failures. Added to debug | 102 // Number of input event send IPC failures. Added to debug |
| 101 // crbug.com/615090. | 103 // crbug.com/615090. |
| 102 extern const char kInputEventFilterSendFailure[]; | 104 extern const char kInputEventFilterSendFailure[]; |
| 103 | 105 |
| 104 // The user's printers, up to kPrinterInfoCount. Should be set with | 106 // The user's printers, up to kPrinterInfoCount. Should be set with |
| 105 // ScopedPrinterInfo. | 107 // ScopedPrinterInfo. |
| 106 const size_t kPrinterInfoCount = 4; | 108 const size_t kPrinterInfoCount = 4; |
| 107 extern const char kPrinterInfo[]; | 109 extern const char kPrinterInfo[]; |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 142 // Numbers of active views. | 144 // Numbers of active views. |
| 143 extern const char kViewCount[]; | 145 extern const char kViewCount[]; |
| 144 | 146 |
| 145 // TEMPORARY: The encoder/frame details at the time a zero-length encoded frame | 147 // TEMPORARY: The encoder/frame details at the time a zero-length encoded frame |
| 146 // was encountered. http://crbug.com/519022 | 148 // was encountered. http://crbug.com/519022 |
| 147 extern const char kZeroEncodeDetails[]; | 149 extern const char kZeroEncodeDetails[]; |
| 148 | 150 |
| 149 } // namespace crash_keys | 151 } // namespace crash_keys |
| 150 | 152 |
| 151 #endif // CHROME_COMMON_CRASH_KEYS_H_ | 153 #endif // CHROME_COMMON_CRASH_KEYS_H_ |
| OLD | NEW |