Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(65)

Side by Side Diff: blimp/engine/app/blimp_engine_crash_keys.cc

Issue 2560873004: ServiceWorker: add crash keys for debugging of IPCs and remove old keys (Closed)
Patch Set: Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | chrome/app/chrome_crash_reporter_client_win.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 { "aci_wrong_sp_extension_id", crash_keys::kSmallSize }, 97 { "aci_wrong_sp_extension_id", crash_keys::kSmallSize },
98 98
99 // Temporary for https://crbug.com/616149. 99 // Temporary for https://crbug.com/616149.
100 { "existing_extension_pref_value_type", crash_keys::kSmallSize }, 100 { "existing_extension_pref_value_type", crash_keys::kSmallSize },
101 101
102 // Temporary for https://crbug.com/630495. 102 // Temporary for https://crbug.com/630495.
103 { "swdh_register_cannot_host_url", crash_keys::kLargeSize }, 103 { "swdh_register_cannot_host_url", crash_keys::kLargeSize },
104 { "swdh_register_cannot_scope_url", crash_keys::kLargeSize }, 104 { "swdh_register_cannot_scope_url", crash_keys::kLargeSize },
105 { "swdh_register_cannot_script_url", crash_keys::kLargeSize }, 105 { "swdh_register_cannot_script_url", crash_keys::kLargeSize },
106 106
107 // Temporary for https://crbug.com/619294.
108 { "swdh_unregister_cannot_host_url", crash_keys::kLargeSize },
109 { "swdh_unregister_cannot_scope_url", crash_keys::kLargeSize },
110
111 // Temporary for https://crbug.com/630496. 107 // Temporary for https://crbug.com/630496.
112 { "swdh_get_registration_cannot_host_url", crash_keys::kLargeSize }, 108 { "swdh_get_registration_cannot_host_url", crash_keys::kLargeSize },
113 { "swdh_get_registration_cannot_document_url", crash_keys::kLargeSize }, 109 { "swdh_get_registration_cannot_document_url", crash_keys::kLargeSize },
110
111 // Temporary for https://crbug.com/668633.
112 { "swdh_set_hosted_version_worker_pid", crash_keys::kSmallSize },
113 { "swdh_set_hosted_version_host_pid", crash_keys::kSmallSize },
114 }; 114 };
115 115
116 return base::debug::InitCrashKeys(engine_keys, arraysize(engine_keys), 116 return base::debug::InitCrashKeys(engine_keys, arraysize(engine_keys),
117 crash_keys::kChunkMaxLength); 117 crash_keys::kChunkMaxLength);
118 } 118 }
119 119
120 } // namespace engine 120 } // namespace engine
121 } // namespace blimp 121 } // namespace blimp
OLDNEW
« no previous file with comments | « no previous file | chrome/app/chrome_crash_reporter_client_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698