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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
63 { "initrf_parent_proxy_exists", crash_keys::kSmallSize }, | 63 { "initrf_parent_proxy_exists", crash_keys::kSmallSize }, |
64 { "initrf_render_view_is_live", crash_keys::kSmallSize }, | 64 { "initrf_render_view_is_live", crash_keys::kSmallSize }, |
65 { "initrf_parent_is_in_same_site_instance", crash_keys::kSmallSize}, | 65 { "initrf_parent_is_in_same_site_instance", crash_keys::kSmallSize}, |
66 { "initrf_parent_process_is_live", crash_keys::kSmallSize}, | 66 { "initrf_parent_process_is_live", crash_keys::kSmallSize}, |
67 { "initrf_root_is_in_same_site_instance", crash_keys::kSmallSize}, | 67 { "initrf_root_is_in_same_site_instance", crash_keys::kSmallSize}, |
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/626802. |
| 74 { "newframe_routing_id", kSmallSize }, |
| 75 { "newframe_proxy_id", kSmallSize }, |
| 76 { "newframe_opener_id", kSmallSize }, |
| 77 { "newframe_parent_id", kSmallSize }, |
| 78 { "newframe_widget_id", kSmallSize }, |
| 79 { "newframe_widget_hidden", kSmallSize }, |
| 80 { "newframe_replicated_origin", kSmallSize }, |
| 81 { "newframe_oopifs_possible", kSmallSize }, |
| 82 |
73 // Temporary for https://crbug.com/630103. | 83 // Temporary for https://crbug.com/630103. |
74 { "origin_mismatch_url", crash_keys::kLargeSize }, | 84 { "origin_mismatch_url", crash_keys::kLargeSize }, |
75 { "origin_mismatch_origin", crash_keys::kMediumSize }, | 85 { "origin_mismatch_origin", crash_keys::kMediumSize }, |
76 { "origin_mismatch_transition", crash_keys::kSmallSize }, | 86 { "origin_mismatch_transition", crash_keys::kSmallSize }, |
77 { "origin_mismatch_redirects", crash_keys::kSmallSize }, | 87 { "origin_mismatch_redirects", crash_keys::kSmallSize }, |
78 { "origin_mismatch_same_page", crash_keys::kSmallSize }, | 88 { "origin_mismatch_same_page", crash_keys::kSmallSize }, |
79 | 89 |
80 // Temporary for https://crbug.com/612711. | 90 // Temporary for https://crbug.com/612711. |
81 { "aci_wrong_sp_extension_id", crash_keys::kSmallSize }, | 91 { "aci_wrong_sp_extension_id", crash_keys::kSmallSize }, |
82 | 92 |
(...skipping 13 matching lines...) Expand all Loading... |
96 { "swdh_get_registration_cannot_host_url", crash_keys::kLargeSize }, | 106 { "swdh_get_registration_cannot_host_url", crash_keys::kLargeSize }, |
97 { "swdh_get_registration_cannot_document_url", crash_keys::kLargeSize }, | 107 { "swdh_get_registration_cannot_document_url", crash_keys::kLargeSize }, |
98 }; | 108 }; |
99 | 109 |
100 return base::debug::InitCrashKeys(engine_keys, arraysize(engine_keys), | 110 return base::debug::InitCrashKeys(engine_keys, arraysize(engine_keys), |
101 crash_keys::kChunkMaxLength); | 111 crash_keys::kChunkMaxLength); |
102 } | 112 } |
103 | 113 |
104 } // namespace engine | 114 } // namespace engine |
105 } // namespace blimp | 115 } // namespace blimp |
OLD | NEW |