| 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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 { "initrf_parent_proxy_exists", crash_keys::kSmallSize }, | 60 { "initrf_parent_proxy_exists", crash_keys::kSmallSize }, |
| 61 { "initrf_render_view_is_live", crash_keys::kSmallSize }, | 61 { "initrf_render_view_is_live", crash_keys::kSmallSize }, |
| 62 { "initrf_parent_is_in_same_site_instance", crash_keys::kSmallSize}, | 62 { "initrf_parent_is_in_same_site_instance", crash_keys::kSmallSize}, |
| 63 { "initrf_parent_process_is_live", crash_keys::kSmallSize}, | 63 { "initrf_parent_process_is_live", crash_keys::kSmallSize}, |
| 64 { "initrf_root_is_in_same_site_instance", crash_keys::kSmallSize}, | 64 { "initrf_root_is_in_same_site_instance", crash_keys::kSmallSize}, |
| 65 { "initrf_root_is_in_same_site_instance_as_parent", | 65 { "initrf_root_is_in_same_site_instance_as_parent", |
| 66 crash_keys::kSmallSize}, | 66 crash_keys::kSmallSize}, |
| 67 { "initrf_root_process_is_live", crash_keys::kSmallSize}, | 67 { "initrf_root_process_is_live", crash_keys::kSmallSize}, |
| 68 { "initrf_root_proxy_is_live", crash_keys::kSmallSize}, | 68 { "initrf_root_proxy_is_live", crash_keys::kSmallSize}, |
| 69 | 69 |
| 70 // Temporary for http://crbug.com/621730. | |
| 71 { "postmessage_script_info", crash_keys::kLargeSize }, | |
| 72 | |
| 73 // Temporary for https://crbug.com/616149. | 70 // Temporary for https://crbug.com/616149. |
| 74 { "existing_extension_pref_value_type", crash_keys::kSmallSize }, | 71 { "existing_extension_pref_value_type", crash_keys::kSmallSize }, |
| 75 }; | 72 }; |
| 76 | 73 |
| 77 return base::debug::InitCrashKeys(engine_keys, arraysize(engine_keys), | 74 return base::debug::InitCrashKeys(engine_keys, arraysize(engine_keys), |
| 78 crash_keys::kChunkMaxLength); | 75 crash_keys::kChunkMaxLength); |
| 79 } | 76 } |
| 80 | 77 |
| 81 } // namespace engine | 78 } // namespace engine |
| 82 } // namespace blimp | 79 } // namespace blimp |
| OLD | NEW |