| 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 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 { "origin_mismatch_transition", crash_keys::kSmallSize }, | 93 { "origin_mismatch_transition", crash_keys::kSmallSize }, |
| 94 { "origin_mismatch_redirects", crash_keys::kSmallSize }, | 94 { "origin_mismatch_redirects", crash_keys::kSmallSize }, |
| 95 { "origin_mismatch_same_page", crash_keys::kSmallSize }, | 95 { "origin_mismatch_same_page", crash_keys::kSmallSize }, |
| 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/630495. | |
| 104 { "swdh_register_cannot_host_url", crash_keys::kLargeSize }, | |
| 105 { "swdh_register_cannot_scope_url", crash_keys::kLargeSize }, | |
| 106 { "swdh_register_cannot_script_url", crash_keys::kLargeSize }, | |
| 107 | |
| 108 // Temporary for https://crbug.com/630496. | |
| 109 { "swdh_get_registration_cannot_host_url", crash_keys::kLargeSize }, | |
| 110 { "swdh_get_registration_cannot_document_url", crash_keys::kLargeSize }, | |
| 111 | |
| 112 // Temporary for https://crbug.com/668633. | 103 // Temporary for https://crbug.com/668633. |
| 113 { "swdh_set_hosted_version_worker_pid", crash_keys::kSmallSize }, | 104 { "swdh_set_hosted_version_worker_pid", crash_keys::kSmallSize }, |
| 114 { "swdh_set_hosted_version_host_pid", crash_keys::kSmallSize }, | 105 { "swdh_set_hosted_version_host_pid", crash_keys::kSmallSize }, |
| 115 }; | 106 }; |
| 116 | 107 |
| 117 return base::debug::InitCrashKeys(engine_keys, arraysize(engine_keys), | 108 return base::debug::InitCrashKeys(engine_keys, arraysize(engine_keys), |
| 118 crash_keys::kChunkMaxLength); | 109 crash_keys::kChunkMaxLength); |
| 119 } | 110 } |
| 120 | 111 |
| 121 } // namespace engine | 112 } // namespace engine |
| 122 } // namespace blimp | 113 } // namespace blimp |
| OLD | NEW |