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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
74 { "aci_wrong_sp_extension_id", crash_keys::kSmallSize }, | 74 { "aci_wrong_sp_extension_id", crash_keys::kSmallSize }, |
75 | 75 |
76 // Temporary for http://crbug.com/621730. | 76 // Temporary for http://crbug.com/621730. |
77 { "postmessage_src_origin", crash_keys::kMediumSize }, | 77 { "postmessage_src_origin", crash_keys::kMediumSize }, |
78 { "postmessage_dst_origin", crash_keys::kMediumSize }, | 78 { "postmessage_dst_origin", crash_keys::kMediumSize }, |
79 { "postmessage_dst_url", crash_keys::kLargeSize }, | 79 { "postmessage_dst_url", crash_keys::kLargeSize }, |
80 { "postmessage_script_info", crash_keys::kLargeSize }, | 80 { "postmessage_script_info", crash_keys::kLargeSize }, |
81 | 81 |
82 // Temporary for https://crbug.com/616149. | 82 // Temporary for https://crbug.com/616149. |
83 { "existing_extension_pref_value_type", crash_keys::kSmallSize }, | 83 { "existing_extension_pref_value_type", crash_keys::kSmallSize }, |
| 84 |
| 85 // Temporary for https://crbug.com/625040 |
| 86 { "swdh_not_handled_message_type", crash_keys::kMediumSize }, |
| 87 { "swdh_not_handled_worker_status", crash_keys::kMediumSize }, |
84 }; | 88 }; |
85 | 89 |
86 return base::debug::InitCrashKeys(engine_keys, arraysize(engine_keys), | 90 return base::debug::InitCrashKeys(engine_keys, arraysize(engine_keys), |
87 crash_keys::kChunkMaxLength); | 91 crash_keys::kChunkMaxLength); |
88 } | 92 } |
89 | 93 |
90 } // namespace engine | 94 } // namespace engine |
91 } // namespace blimp | 95 } // namespace blimp |
OLD | NEW |