| 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[]; |
| 114 #endif | 119 #endif |
| 115 | 120 |
| 116 #if defined(OS_MACOSX) | 121 #if defined(OS_MACOSX) |
| 117 namespace mac { | 122 namespace mac { |
| 118 | 123 |
| 119 // Used to report the first Cocoa/Mac NSException and its backtrace. | 124 // Used to report the first Cocoa/Mac NSException and its backtrace. |
| 120 extern const char kFirstNSException[]; | 125 extern const char kFirstNSException[]; |
| 121 extern const char kFirstNSExceptionTrace[]; | 126 extern const char kFirstNSExceptionTrace[]; |
| 122 | 127 |
| 123 // Used to report the last Cocoa/Mac NSException and its backtrace. | 128 // Used to report the last Cocoa/Mac NSException and its backtrace. |
| (...skipping 12 matching lines...) Expand all Loading... |
| 136 // deliberate crash. | 141 // deliberate crash. |
| 137 extern const char kZombie[]; | 142 extern const char kZombie[]; |
| 138 extern const char kZombieTrace[]; | 143 extern const char kZombieTrace[]; |
| 139 | 144 |
| 140 } // namespace mac | 145 } // namespace mac |
| 141 #endif | 146 #endif |
| 142 | 147 |
| 143 } // namespace crash_keys | 148 } // namespace crash_keys |
| 144 | 149 |
| 145 #endif // CHROME_COMMON_CRASH_KEYS_H_ | 150 #endif // CHROME_COMMON_CRASH_KEYS_H_ |
| OLD | NEW |