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> |
11 | 11 |
12 #include "base/basictypes.h" | 12 #include "base/basictypes.h" |
13 #include "base/debug/crash_logging.h" | 13 #include "base/debug/crash_logging.h" |
14 #include "base/string16.h" | 14 #include "base/strings/string16.h" |
15 #include "googleurl/src/gurl.h" | 15 #include "googleurl/src/gurl.h" |
16 | 16 |
17 class CommandLine; | 17 class CommandLine; |
18 | 18 |
19 namespace gpu { | 19 namespace gpu { |
20 struct GPUInfo; | 20 struct GPUInfo; |
21 } | 21 } |
22 | 22 |
23 // The maximum number of active extensions we will report. | 23 // The maximum number of active extensions we will report. |
24 // Also used in chrome/app, but we define it here to avoid a common->app | 24 // Also used in chrome/app, but we define it here to avoid a common->app |
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
164 | 164 |
165 extern const size_t kMaxNumCrashURLChunks; | 165 extern const size_t kMaxNumCrashURLChunks; |
166 extern const size_t kMaxNumURLChunkValueLength; | 166 extern const size_t kMaxNumURLChunkValueLength; |
167 extern const char* kUrlChunkFormatStr; | 167 extern const char* kUrlChunkFormatStr; |
168 | 168 |
169 } // namespace child_process_logging | 169 } // namespace child_process_logging |
170 | 170 |
171 #endif // defined(OS_MACOSX) | 171 #endif // defined(OS_MACOSX) |
172 | 172 |
173 #endif // CHROME_COMMON_CHILD_PROCESS_LOGGING_H_ | 173 #endif // CHROME_COMMON_CHILD_PROCESS_LOGGING_H_ |
OLD | NEW |