OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 COMPONENTS_CRASH_KEYS_CRASH_KEYS_H_ | 5 #ifndef COMPONENTS_CRASH_KEYS_CRASH_KEYS_H_ |
6 #define COMPONENTS_CRASH_KEYS_CRASH_KEYS_H_ | 6 #define COMPONENTS_CRASH_KEYS_CRASH_KEYS_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
51 // The product release/distribution channel. | 51 // The product release/distribution channel. |
52 extern const char kChannel[]; | 52 extern const char kChannel[]; |
53 | 53 |
54 // The total number of experiments the instance has. | 54 // The total number of experiments the instance has. |
55 extern const char kNumVariations[]; | 55 extern const char kNumVariations[]; |
56 | 56 |
57 // The experiments chunk. Hashed experiment names separated by |,|. This is | 57 // The experiments chunk. Hashed experiment names separated by |,|. This is |
58 // typically set by SetExperimentList. | 58 // typically set by SetExperimentList. |
59 extern const char kVariations[]; | 59 extern const char kVariations[]; |
60 | 60 |
| 61 // Used to help investigate bug 464926. |
| 62 extern const char kBug464926CrashKey[]; |
| 63 |
61 #if defined(OS_MACOSX) | 64 #if defined(OS_MACOSX) |
62 namespace mac { | 65 namespace mac { |
63 | 66 |
64 // Records Cocoa zombie/used-after-freed objects that resulted in a | 67 // Records Cocoa zombie/used-after-freed objects that resulted in a |
65 // deliberate crash. | 68 // deliberate crash. |
66 extern const char kZombie[]; | 69 extern const char kZombie[]; |
67 extern const char kZombieTrace[]; | 70 extern const char kZombieTrace[]; |
68 | 71 |
69 } // namespace mac | 72 } // namespace mac |
70 #endif | 73 #endif |
71 | 74 |
72 } // namespace crash_keys | 75 } // namespace crash_keys |
73 | 76 |
74 #endif // COMPONENTS_CRASH_KEYS_CRASH_KEYS_H_ | 77 #endif // COMPONENTS_CRASH_KEYS_CRASH_KEYS_H_ |
OLD | NEW |