| 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 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 | 119 |
| 120 #if defined(KASKO) | 120 #if defined(KASKO) |
| 121 // Used to correlate a report sent via Kasko with one sent via Breakpad. | 121 // Used to correlate a report sent via Kasko with one sent via Breakpad. |
| 122 extern const char kKaskoGuid[]; | 122 extern const char kKaskoGuid[]; |
| 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 |
| 130 // was encountered. http://crbug.com/519022 |
| 131 extern const char kZeroEncodeDetails[]; |
| 132 |
| 129 } // namespace crash_keys | 133 } // namespace crash_keys |
| 130 | 134 |
| 131 #endif // CHROME_COMMON_CRASH_KEYS_H_ | 135 #endif // CHROME_COMMON_CRASH_KEYS_H_ |
| OLD | NEW |