| 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 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 150 | 150 |
| 151 } // namespace mac | 151 } // namespace mac |
| 152 #endif | 152 #endif |
| 153 | 153 |
| 154 #if defined(KASKO) | 154 #if defined(KASKO) |
| 155 // Used to correlate a report sent via Kasko with one sent via Breakpad. | 155 // Used to correlate a report sent via Kasko with one sent via Breakpad. |
| 156 extern const char kKaskoGuid[]; | 156 extern const char kKaskoGuid[]; |
| 157 extern const char kKaskoEquivalentGuid[]; | 157 extern const char kKaskoEquivalentGuid[]; |
| 158 #endif | 158 #endif |
| 159 | 159 |
| 160 // Used to help investigate bug 464926. |
| 161 extern const char kBug464926CrashKey[]; |
| 162 |
| 160 } // namespace crash_keys | 163 } // namespace crash_keys |
| 161 | 164 |
| 162 #endif // CHROME_COMMON_CRASH_KEYS_H_ | 165 #endif // CHROME_COMMON_CRASH_KEYS_H_ |
| OLD | NEW |