| 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 <stddef.h> |
| 9 |
| 8 #include <set> | 10 #include <set> |
| 9 #include <string> | 11 #include <string> |
| 10 #include <vector> | 12 #include <vector> |
| 11 | 13 |
| 12 #include "base/debug/crash_logging.h" | 14 #include "base/debug/crash_logging.h" |
| 15 #include "base/macros.h" |
| 16 #include "build/build_config.h" |
| 13 #include "components/crash/core/common/crash_keys.h" | 17 #include "components/crash/core/common/crash_keys.h" |
| 14 | 18 |
| 15 namespace base { | 19 namespace base { |
| 16 class CommandLine; | 20 class CommandLine; |
| 17 } | 21 } |
| 18 | 22 |
| 19 namespace crash_keys { | 23 namespace crash_keys { |
| 20 | 24 |
| 21 // Registers all of the potential crash keys that can be sent to the crash | 25 // Registers all of the potential crash keys that can be sent to the crash |
| 22 // reporting server. Returns the size of the union of all keys. | 26 // reporting server. Returns the size of the union of all keys. |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 // Numbers of active views. | 127 // Numbers of active views. |
| 124 extern const char kViewCount[]; | 128 extern const char kViewCount[]; |
| 125 | 129 |
| 126 // TEMPORARY: The encoder/frame details at the time a zero-length encoded frame | 130 // TEMPORARY: The encoder/frame details at the time a zero-length encoded frame |
| 127 // was encountered. http://crbug.com/519022 | 131 // was encountered. http://crbug.com/519022 |
| 128 extern const char kZeroEncodeDetails[]; | 132 extern const char kZeroEncodeDetails[]; |
| 129 | 133 |
| 130 } // namespace crash_keys | 134 } // namespace crash_keys |
| 131 | 135 |
| 132 #endif // CHROME_COMMON_CRASH_KEYS_H_ | 136 #endif // CHROME_COMMON_CRASH_KEYS_H_ |
| OLD | NEW |