Chromium Code Reviews| 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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 74 | 74 |
| 75 // Installed extensions. |kExtensionID| should be formatted with an integer, | 75 // Installed extensions. |kExtensionID| should be formatted with an integer, |
| 76 // in the range [0, kExtensionIDMaxCount). | 76 // in the range [0, kExtensionIDMaxCount). |
| 77 const size_t kExtensionIDMaxCount = 10; | 77 const size_t kExtensionIDMaxCount = 10; |
| 78 extern const char kExtensionID[]; | 78 extern const char kExtensionID[]; |
| 79 // The total number of installed extensions, recorded in case it exceeds | 79 // The total number of installed extensions, recorded in case it exceeds |
| 80 // kExtensionIDMaxCount. Also used in chrome/app, but defined here to avoid | 80 // kExtensionIDMaxCount. Also used in chrome/app, but defined here to avoid |
| 81 // a common->app dependency. | 81 // a common->app dependency. |
| 82 extern const char kNumExtensionsCount[]; | 82 extern const char kNumExtensionsCount[]; |
| 83 | 83 |
| 84 #if defined(OS_CHROMEOS) | |
|
Robert Sesek
2014/01/16 17:26:00
Can you move this to be before or the Mac section
Mr4D (OOO till 08-26)
2014/01/16 17:51:02
Done.
| |
| 85 // The number of simultaneous users in multi profile sessions. | |
| 86 extern const char kNumberOfUsers[]; | |
| 87 #endif | |
| 88 | |
| 84 // The number of render views/tabs open in a renderer process. | 89 // The number of render views/tabs open in a renderer process. |
| 85 extern const char kNumberOfViews[]; | 90 extern const char kNumberOfViews[]; |
| 86 | 91 |
| 87 // GPU information. | 92 // GPU information. |
| 88 #if !defined(OS_ANDROID) | 93 #if !defined(OS_ANDROID) |
| 89 extern const char kGPUVendorID[]; | 94 extern const char kGPUVendorID[]; |
| 90 extern const char kGPUDeviceID[]; | 95 extern const char kGPUDeviceID[]; |
| 91 #endif | 96 #endif |
| 92 extern const char kGPUDriverVersion[]; | 97 extern const char kGPUDriverVersion[]; |
| 93 extern const char kGPUPixelShaderVersion[]; | 98 extern const char kGPUPixelShaderVersion[]; |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after 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 |