| 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 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 #elif defined(OS_POSIX) | 97 #elif defined(OS_POSIX) |
| 98 extern const char kGPUVendor[]; | 98 extern const char kGPUVendor[]; |
| 99 extern const char kGPURenderer[]; | 99 extern const char kGPURenderer[]; |
| 100 #endif | 100 #endif |
| 101 | 101 |
| 102 // The user's printers, up to kPrinterInfoCount. Should be set with | 102 // The user's printers, up to kPrinterInfoCount. Should be set with |
| 103 // ScopedPrinterInfo. | 103 // ScopedPrinterInfo. |
| 104 const size_t kPrinterInfoCount = 4; | 104 const size_t kPrinterInfoCount = 4; |
| 105 extern const char kPrinterInfo[]; | 105 extern const char kPrinterInfo[]; |
| 106 | 106 |
| 107 #if defined(OS_CHROMEOS) |
| 108 // The number of simultaneous users in multi profile sessions. |
| 109 extern const char kNumberOfUsers[]; |
| 110 #endif |
| 111 |
| 107 #if defined(OS_MACOSX) | 112 #if defined(OS_MACOSX) |
| 108 namespace mac { | 113 namespace mac { |
| 109 | 114 |
| 110 // Used to report the first Cocoa/Mac NSException and its backtrace. | 115 // Used to report the first Cocoa/Mac NSException and its backtrace. |
| 111 extern const char kFirstNSException[]; | 116 extern const char kFirstNSException[]; |
| 112 extern const char kFirstNSExceptionTrace[]; | 117 extern const char kFirstNSExceptionTrace[]; |
| 113 | 118 |
| 114 // Used to report the last Cocoa/Mac NSException and its backtrace. | 119 // Used to report the last Cocoa/Mac NSException and its backtrace. |
| 115 extern const char kLastNSException[]; | 120 extern const char kLastNSException[]; |
| 116 extern const char kLastNSExceptionTrace[]; | 121 extern const char kLastNSExceptionTrace[]; |
| (...skipping 10 matching lines...) Expand all Loading... |
| 127 // deliberate crash. | 132 // deliberate crash. |
| 128 extern const char kZombie[]; | 133 extern const char kZombie[]; |
| 129 extern const char kZombieTrace[]; | 134 extern const char kZombieTrace[]; |
| 130 | 135 |
| 131 } // namespace mac | 136 } // namespace mac |
| 132 #endif | 137 #endif |
| 133 | 138 |
| 134 } // namespace crash_keys | 139 } // namespace crash_keys |
| 135 | 140 |
| 136 #endif // CHROME_COMMON_CRASH_KEYS_H_ | 141 #endif // CHROME_COMMON_CRASH_KEYS_H_ |
| OLD | NEW |