| 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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 { "initrf_root_is_in_same_site_instance_as_parent", | 68 { "initrf_root_is_in_same_site_instance_as_parent", |
| 69 crash_keys::kSmallSize}, | 69 crash_keys::kSmallSize}, |
| 70 { "initrf_root_process_is_live", crash_keys::kSmallSize}, | 70 { "initrf_root_process_is_live", crash_keys::kSmallSize}, |
| 71 { "initrf_root_proxy_is_live", crash_keys::kSmallSize}, | 71 { "initrf_root_proxy_is_live", crash_keys::kSmallSize}, |
| 72 | 72 |
| 73 // Temporary for https://crbug.com/612711. | 73 // Temporary for https://crbug.com/612711. |
| 74 { "aci_wrong_sp_extension_id", crash_keys::kSmallSize }, | 74 { "aci_wrong_sp_extension_id", crash_keys::kSmallSize }, |
| 75 | 75 |
| 76 // Temporary for https://crbug.com/616149. | 76 // Temporary for https://crbug.com/616149. |
| 77 { "existing_extension_pref_value_type", crash_keys::kSmallSize }, | 77 { "existing_extension_pref_value_type", crash_keys::kSmallSize }, |
| 78 |
| 79 // Temporary for https://crbug.com/630495. |
| 80 { "swdh_register_cannot_host_url", crash_keys::kLargeSize }, |
| 81 { "swdh_register_cannot_scope_url", crash_keys::kLargeSize }, |
| 82 { "swdh_register_cannot_script_url", crash_keys::kLargeSize }, |
| 83 |
| 84 // Temporary for https://crbug.com/619294. |
| 85 { "swdh_unregister_cannot_host_url", crash_keys::kLargeSize }, |
| 86 { "swdh_unregister_cannot_scope_url", crash_keys::kLargeSize }, |
| 87 |
| 88 // Temporary for https://crbug.com/630496. |
| 89 { "swdh_get_registration_cannot_host_url", crash_keys::kLargeSize }, |
| 90 { "swdh_get_registration_cannot_document_url", crash_keys::kLargeSize }, |
| 78 }; | 91 }; |
| 79 | 92 |
| 80 return base::debug::InitCrashKeys(engine_keys, arraysize(engine_keys), | 93 return base::debug::InitCrashKeys(engine_keys, arraysize(engine_keys), |
| 81 crash_keys::kChunkMaxLength); | 94 crash_keys::kChunkMaxLength); |
| 82 } | 95 } |
| 83 | 96 |
| 84 } // namespace engine | 97 } // namespace engine |
| 85 } // namespace blimp | 98 } // namespace blimp |
| OLD | NEW |