| 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 <set> | 8 #include <set> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 extern const char kKaskoEquivalentGuid[]; | 123 extern const char kKaskoEquivalentGuid[]; |
| 124 #endif | 124 #endif |
| 125 | 125 |
| 126 // Numbers of active views. | 126 // Numbers of active views. |
| 127 extern const char kViewCount[]; | 127 extern const char kViewCount[]; |
| 128 | 128 |
| 129 // TEMPORARY: The encoder/frame details at the time a zero-length encoded frame | 129 // TEMPORARY: The encoder/frame details at the time a zero-length encoded frame |
| 130 // was encountered. http://crbug.com/519022 | 130 // was encountered. http://crbug.com/519022 |
| 131 extern const char kZeroEncodeDetails[]; | 131 extern const char kZeroEncodeDetails[]; |
| 132 | 132 |
| 133 // TEMPORARY: The stack trace at the time of URLRequest start, if the main frame |
| 134 // URLRequest ends with ERR_ABORTED after less than 100ms. |
| 135 extern const char kFastErrAbortTrace[]; |
| 136 |
| 133 } // namespace crash_keys | 137 } // namespace crash_keys |
| 134 | 138 |
| 135 #endif // CHROME_COMMON_CRASH_KEYS_H_ | 139 #endif // CHROME_COMMON_CRASH_KEYS_H_ |
| OLD | NEW |