| 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 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 137 extern const char kNSException[]; | 137 extern const char kNSException[]; |
| 138 extern const char kNSExceptionTrace[]; | 138 extern const char kNSExceptionTrace[]; |
| 139 | 139 |
| 140 // In the CrApplication, records information about the current event's | 140 // In the CrApplication, records information about the current event's |
| 141 // target-action. | 141 // target-action. |
| 142 extern const char kSendAction[]; | 142 extern const char kSendAction[]; |
| 143 | 143 |
| 144 // In the CrApplication, records information about the current event. | 144 // In the CrApplication, records information about the current event. |
| 145 extern const char kNSEvent[]; | 145 extern const char kNSEvent[]; |
| 146 | 146 |
| 147 // TEMPORARY: Information about Toolbar.nib, stored right after it's supposed |
| 148 // to have loaded. https://crbug.com/685985 |
| 149 extern const char kToolbarNibInfo[]; |
| 150 |
| 147 } // namespace mac | 151 } // namespace mac |
| 148 #endif | 152 #endif |
| 149 | 153 |
| 150 // Numbers of active views. | 154 // Numbers of active views. |
| 151 extern const char kViewCount[]; | 155 extern const char kViewCount[]; |
| 152 | 156 |
| 153 // 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 |
| 154 // was encountered. http://crbug.com/519022 | 158 // was encountered. http://crbug.com/519022 |
| 155 extern const char kZeroEncodeDetails[]; | 159 extern const char kZeroEncodeDetails[]; |
| 156 | 160 |
| 157 } // namespace crash_keys | 161 } // namespace crash_keys |
| 158 | 162 |
| 159 #endif // CHROME_COMMON_CRASH_KEYS_H_ | 163 #endif // CHROME_COMMON_CRASH_KEYS_H_ |
| OLD | NEW |