| 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 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 extern const char kLastNSExceptionTrace[]; | 123 extern const char kLastNSExceptionTrace[]; |
| 124 | 124 |
| 125 // Records the current NSException as it is being created, and its backtrace. | 125 // Records the current NSException as it is being created, and its backtrace. |
| 126 extern const char kNSException[]; | 126 extern const char kNSException[]; |
| 127 extern const char kNSExceptionTrace[]; | 127 extern const char kNSExceptionTrace[]; |
| 128 | 128 |
| 129 // In the CrApplication, records information about the current event's | 129 // In the CrApplication, records information about the current event's |
| 130 // target-action. | 130 // target-action. |
| 131 extern const char kSendAction[]; | 131 extern const char kSendAction[]; |
| 132 | 132 |
| 133 // In the CrApplication, records information about the current event. |
| 134 extern const char kNSEvent[]; |
| 135 |
| 133 } // namespace mac | 136 } // namespace mac |
| 134 #endif | 137 #endif |
| 135 | 138 |
| 136 #if BUILDFLAG(ENABLE_KASKO) | 139 #if BUILDFLAG(ENABLE_KASKO) |
| 137 // Used to correlate a report sent via Kasko with one sent via Breakpad. | 140 // Used to correlate a report sent via Kasko with one sent via Breakpad. |
| 138 extern const char kKaskoGuid[]; | 141 extern const char kKaskoGuid[]; |
| 139 extern const char kKaskoEquivalentGuid[]; | 142 extern const char kKaskoEquivalentGuid[]; |
| 140 #endif | 143 #endif |
| 141 | 144 |
| 142 // Numbers of active views. | 145 // Numbers of active views. |
| 143 extern const char kViewCount[]; | 146 extern const char kViewCount[]; |
| 144 | 147 |
| 145 // 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 |
| 146 // was encountered. http://crbug.com/519022 | 149 // was encountered. http://crbug.com/519022 |
| 147 extern const char kZeroEncodeDetails[]; | 150 extern const char kZeroEncodeDetails[]; |
| 148 | 151 |
| 149 } // namespace crash_keys | 152 } // namespace crash_keys |
| 150 | 153 |
| 151 #endif // CHROME_COMMON_CRASH_KEYS_H_ | 154 #endif // CHROME_COMMON_CRASH_KEYS_H_ |
| OLD | NEW |