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 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
104 #endif | 104 #endif |
105 | 105 |
106 // The user's printers, up to kPrinterInfoCount. Should be set with | 106 // The user's printers, up to kPrinterInfoCount. Should be set with |
107 // ScopedPrinterInfo. | 107 // ScopedPrinterInfo. |
108 const size_t kPrinterInfoCount = 4; | 108 const size_t kPrinterInfoCount = 4; |
109 extern const char kPrinterInfo[]; | 109 extern const char kPrinterInfo[]; |
110 | 110 |
111 #if defined(OS_CHROMEOS) | 111 #if defined(OS_CHROMEOS) |
112 // The number of simultaneous users in multi profile sessions. | 112 // The number of simultaneous users in multi profile sessions. |
113 extern const char kNumberOfUsers[]; | 113 extern const char kNumberOfUsers[]; |
114 | |
115 // The name of an aura::Window which is still alive despite its ui::Layer being | |
116 // destroyed. | |
117 // TODO(pkotwicz): Remove once crbug.com/338788 is resolved. | |
118 extern const char kNameOfWindowWithDestroyedLayer[]; | |
119 #endif | 114 #endif |
120 | 115 |
121 #if defined(OS_MACOSX) | 116 #if defined(OS_MACOSX) |
122 namespace mac { | 117 namespace mac { |
123 | 118 |
124 // Used to report the first Cocoa/Mac NSException and its backtrace. | 119 // Used to report the first Cocoa/Mac NSException and its backtrace. |
125 extern const char kFirstNSException[]; | 120 extern const char kFirstNSException[]; |
126 extern const char kFirstNSExceptionTrace[]; | 121 extern const char kFirstNSExceptionTrace[]; |
127 | 122 |
128 // Used to report the last Cocoa/Mac NSException and its backtrace. | 123 // Used to report the last Cocoa/Mac NSException and its backtrace. |
(...skipping 12 matching lines...) Expand all Loading... |
141 // deliberate crash. | 136 // deliberate crash. |
142 extern const char kZombie[]; | 137 extern const char kZombie[]; |
143 extern const char kZombieTrace[]; | 138 extern const char kZombieTrace[]; |
144 | 139 |
145 } // namespace mac | 140 } // namespace mac |
146 #endif | 141 #endif |
147 | 142 |
148 } // namespace crash_keys | 143 } // namespace crash_keys |
149 | 144 |
150 #endif // CHROME_COMMON_CRASH_KEYS_H_ | 145 #endif // CHROME_COMMON_CRASH_KEYS_H_ |
OLD | NEW |