| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 #include "blimp/engine/app/blimp_engine_crash_keys.h" | 5 #include "blimp/engine/app/blimp_engine_crash_keys.h" |
| 6 | 6 |
| 7 #include "base/debug/crash_logging.h" | 7 #include "base/debug/crash_logging.h" |
| 8 #include "base/macros.h" | 8 #include "base/macros.h" |
| 9 #include "components/crash/core/common/crash_keys.h" | 9 #include "components/crash/core/common/crash_keys.h" |
| 10 | 10 |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 | 96 |
| 97 // Temporary for https://crbug.com/612711. | 97 // Temporary for https://crbug.com/612711. |
| 98 { "aci_wrong_sp_extension_id", crash_keys::kSmallSize }, | 98 { "aci_wrong_sp_extension_id", crash_keys::kSmallSize }, |
| 99 | 99 |
| 100 // Temporary for https://crbug.com/616149. | 100 // Temporary for https://crbug.com/616149. |
| 101 { "existing_extension_pref_value_type", crash_keys::kSmallSize }, | 101 { "existing_extension_pref_value_type", crash_keys::kSmallSize }, |
| 102 | 102 |
| 103 // Temporary for https://crbug.com/668633. | 103 // Temporary for https://crbug.com/668633. |
| 104 { "swdh_set_hosted_version_worker_pid", crash_keys::kSmallSize }, | 104 { "swdh_set_hosted_version_worker_pid", crash_keys::kSmallSize }, |
| 105 { "swdh_set_hosted_version_host_pid", crash_keys::kSmallSize }, | 105 { "swdh_set_hosted_version_host_pid", crash_keys::kSmallSize }, |
| 106 { "swdh_set_hosted_version_is_new_process", crash_keys::kSmallSize }, |
| 107 { "swdh_set_hosted_version_restart_count", crash_keys::kSmallSize }, |
| 106 }; | 108 }; |
| 107 | 109 |
| 108 return base::debug::InitCrashKeys(engine_keys, arraysize(engine_keys), | 110 return base::debug::InitCrashKeys(engine_keys, arraysize(engine_keys), |
| 109 crash_keys::kChunkMaxLength); | 111 crash_keys::kChunkMaxLength); |
| 110 } | 112 } |
| 111 | 113 |
| 112 } // namespace engine | 114 } // namespace engine |
| 113 } // namespace blimp | 115 } // namespace blimp |
| OLD | NEW |