| 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 |
| 11 namespace blimp { | 11 namespace blimp { |
| 12 namespace engine { | 12 namespace engine { |
| 13 | 13 |
| 14 size_t RegisterEngineCrashKeys() { | 14 size_t RegisterEngineCrashKeys() { |
| 15 // For now these need to be kept relatively up to date with those in | 15 // For now these need to be kept relatively up to date with those in |
| 16 // //chrome/common/crash_keys.cc::RegisterChromeCrashKeys() | 16 // //chrome/common/crash_keys.cc::RegisterChromeCrashKeys() |
| 17 // All of the keys used in //content and //components/crash must show up | 17 // All of the keys used in //content and //components/crash must show up |
| 18 // here. | 18 // here. |
| 19 // TODO(marcinjb): Change the approach when http://crbug.com/598854 is | 19 // TODO(marcinjb): Change the approach when http://crbug.com/598854 is |
| 20 // resolved. | 20 // resolved. |
| 21 const base::debug::CrashKey engine_keys[] = { | 21 const base::debug::CrashKey engine_keys[] = { |
| 22 { crash_keys::kClientId, crash_keys::kSmallSize }, | 22 { crash_keys::kClientId, crash_keys::kSmallSize }, |
| 23 { crash_keys::kChannel, crash_keys::kSmallSize }, | 23 { crash_keys::kChannel, crash_keys::kSmallSize }, |
| 24 { crash_keys::kNumVariations, crash_keys::kSmallSize }, | 24 { crash_keys::kNumVariations, crash_keys::kSmallSize }, |
| 25 { crash_keys::kVariations, crash_keys::kLargeSize }, | 25 { crash_keys::kVariations, crash_keys::kLargeSize }, |
| 26 | 26 |
| 27 // browser/: | 27 // browser/: |
| 28 { "third-party-modules-loaded", crash_keys::kSmallSize }, | 28 { "third-party-modules-loaded", crash_keys::kSmallSize }, |
| 29 { "third-party-modules-not-loaded", crash_keys::kSmallSize }, | 29 { "third-party-modules-not-loaded", crash_keys::kSmallSize }, |
| 30 { "enrolled-to-domain", crash_keys::kSmallSize }, |
| 30 | 31 |
| 31 // //content crash keys | 32 // //content crash keys |
| 32 { "bad_message_reason", crash_keys::kSmallSize }, | 33 { "bad_message_reason", crash_keys::kSmallSize }, |
| 33 { "channel_error_bt", crash_keys::kMediumSize }, | 34 { "channel_error_bt", crash_keys::kMediumSize }, |
| 34 { "discardable-memory-allocated", crash_keys::kSmallSize }, | 35 { "discardable-memory-allocated", crash_keys::kSmallSize }, |
| 35 { "discardable-memory-free", crash_keys::kSmallSize }, | 36 { "discardable-memory-free", crash_keys::kSmallSize }, |
| 36 { "mojo-message-error", crash_keys::kMediumSize }, | 37 { "mojo-message-error", crash_keys::kMediumSize }, |
| 37 { "ppapi_path", crash_keys::kMediumSize }, | 38 { "ppapi_path", crash_keys::kMediumSize }, |
| 38 { "remove_route_bt", crash_keys::kMediumSize }, | 39 { "remove_route_bt", crash_keys::kMediumSize }, |
| 39 { "rwhvm_window", crash_keys::kMediumSize }, | 40 { "rwhvm_window", crash_keys::kMediumSize }, |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 { "swdh_get_registration_cannot_host_url", crash_keys::kLargeSize }, | 112 { "swdh_get_registration_cannot_host_url", crash_keys::kLargeSize }, |
| 112 { "swdh_get_registration_cannot_document_url", crash_keys::kLargeSize }, | 113 { "swdh_get_registration_cannot_document_url", crash_keys::kLargeSize }, |
| 113 }; | 114 }; |
| 114 | 115 |
| 115 return base::debug::InitCrashKeys(engine_keys, arraysize(engine_keys), | 116 return base::debug::InitCrashKeys(engine_keys, arraysize(engine_keys), |
| 116 crash_keys::kChunkMaxLength); | 117 crash_keys::kChunkMaxLength); |
| 117 } | 118 } |
| 118 | 119 |
| 119 } // namespace engine | 120 } // namespace engine |
| 120 } // namespace blimp | 121 } // namespace blimp |
| OLD | NEW |