| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_CHILD_PROCESS_LOGGING_H_ | 5 #ifndef CHROME_COMMON_CHILD_PROCESS_LOGGING_H_ |
| 6 #define CHROME_COMMON_CHILD_PROCESS_LOGGING_H_ | 6 #define CHROME_COMMON_CHILD_PROCESS_LOGGING_H_ |
| 7 | 7 |
| 8 #include <set> | 8 #include <set> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 extern char g_client_id[]; | 55 extern char g_client_id[]; |
| 56 extern char g_extension_ids[]; | 56 extern char g_extension_ids[]; |
| 57 extern char g_gpu_vendor_id[]; | 57 extern char g_gpu_vendor_id[]; |
| 58 extern char g_gpu_device_id[]; | 58 extern char g_gpu_device_id[]; |
| 59 extern char g_gpu_driver_ver[]; | 59 extern char g_gpu_driver_ver[]; |
| 60 extern char g_gpu_ps_ver[]; | 60 extern char g_gpu_ps_ver[]; |
| 61 extern char g_gpu_vs_ver[]; | 61 extern char g_gpu_vs_ver[]; |
| 62 extern char g_num_extensions[]; | 62 extern char g_num_extensions[]; |
| 63 extern char g_num_switches[]; | 63 extern char g_num_switches[]; |
| 64 extern char g_num_views[]; | 64 extern char g_num_views[]; |
| 65 extern char g_num_variations[]; |
| 65 extern char g_printer_info[]; | 66 extern char g_printer_info[]; |
| 66 extern char g_switches[]; | 67 extern char g_switches[]; |
| 68 extern char g_variation_chunks[]; |
| 67 | 69 |
| 68 // Assume IDs are 32 bytes long. | 70 // Assume IDs are 32 bytes long. |
| 69 static const size_t kExtensionLen = 32; | 71 static const size_t kExtensionLen = 32; |
| 70 | 72 |
| 71 // Assume command line switches are less than 64 chars. | 73 // Assume command line switches are less than 64 chars. |
| 72 static const size_t kSwitchLen = 64; | 74 static const size_t kSwitchLen = 64; |
| 73 | 75 |
| 74 // Assume printer info strings are less than 64 chars. | 76 // Assume printer info strings are less than 64 chars. |
| 75 static const size_t kPrinterInfoStrLen = 64; | 77 static const size_t kPrinterInfoStrLen = 64; |
| 76 #endif | 78 #endif |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 160 | 162 |
| 161 extern const int kMaxNumCrashURLChunks; | 163 extern const int kMaxNumCrashURLChunks; |
| 162 extern const int kMaxNumURLChunkValueLength; | 164 extern const int kMaxNumURLChunkValueLength; |
| 163 extern const char *kUrlChunkFormatStr; | 165 extern const char *kUrlChunkFormatStr; |
| 164 | 166 |
| 165 } // namespace child_process_logging | 167 } // namespace child_process_logging |
| 166 | 168 |
| 167 #endif // defined(OS_MACOSX) | 169 #endif // defined(OS_MACOSX) |
| 168 | 170 |
| 169 #endif // CHROME_COMMON_CHILD_PROCESS_LOGGING_H_ | 171 #endif // CHROME_COMMON_CHILD_PROCESS_LOGGING_H_ |
| OLD | NEW |