| 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 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 { "swdh_register_cannot_scope_url", crash_keys::kLargeSize }, | 102 { "swdh_register_cannot_scope_url", crash_keys::kLargeSize }, |
| 103 { "swdh_register_cannot_script_url", crash_keys::kLargeSize }, | 103 { "swdh_register_cannot_script_url", crash_keys::kLargeSize }, |
| 104 | 104 |
| 105 // Temporary for https://crbug.com/619294. | 105 // Temporary for https://crbug.com/619294. |
| 106 { "swdh_unregister_cannot_host_url", crash_keys::kLargeSize }, | 106 { "swdh_unregister_cannot_host_url", crash_keys::kLargeSize }, |
| 107 { "swdh_unregister_cannot_scope_url", crash_keys::kLargeSize }, | 107 { "swdh_unregister_cannot_scope_url", crash_keys::kLargeSize }, |
| 108 | 108 |
| 109 // Temporary for https://crbug.com/630496. | 109 // Temporary for https://crbug.com/630496. |
| 110 { "swdh_get_registration_cannot_host_url", crash_keys::kLargeSize }, | 110 { "swdh_get_registration_cannot_host_url", crash_keys::kLargeSize }, |
| 111 { "swdh_get_registration_cannot_document_url", crash_keys::kLargeSize }, | 111 { "swdh_get_registration_cannot_document_url", crash_keys::kLargeSize }, |
| 112 | |
| 113 // Temporary for https://crbug.com/660427. | |
| 114 { "blink_scheduler_task_function_name", crash_keys::kMediumSize }, | |
| 115 { "blink_scheduler_task_file_name", crash_keys::kMediumSize }, | |
| 116 }; | 112 }; |
| 117 | 113 |
| 118 return base::debug::InitCrashKeys(engine_keys, arraysize(engine_keys), | 114 return base::debug::InitCrashKeys(engine_keys, arraysize(engine_keys), |
| 119 crash_keys::kChunkMaxLength); | 115 crash_keys::kChunkMaxLength); |
| 120 } | 116 } |
| 121 | 117 |
| 122 } // namespace engine | 118 } // namespace engine |
| 123 } // namespace blimp | 119 } // namespace blimp |
| OLD | NEW |