OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 // TODO(ananta/scottmg) | 5 // TODO(ananta/scottmg) |
6 // Add test coverage for Crashpad. | 6 // Add test coverage for Crashpad. |
7 #include "chrome/app/chrome_crash_reporter_client_win.h" | 7 #include "chrome/app/chrome_crash_reporter_client_win.h" |
8 | 8 |
9 #include <assert.h> | 9 #include <assert.h> |
10 #include <windows.h> | 10 #include <windows.h> |
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
172 {"swdh_register_cannot_scope_url", crash_keys::kLargeSize}, | 172 {"swdh_register_cannot_scope_url", crash_keys::kLargeSize}, |
173 {"swdh_register_cannot_script_url", crash_keys::kLargeSize}, | 173 {"swdh_register_cannot_script_url", crash_keys::kLargeSize}, |
174 | 174 |
175 // Temporary for https://crbug.com/619294. | 175 // Temporary for https://crbug.com/619294. |
176 {"swdh_unregister_cannot_host_url", crash_keys::kLargeSize}, | 176 {"swdh_unregister_cannot_host_url", crash_keys::kLargeSize}, |
177 {"swdh_unregister_cannot_scope_url", crash_keys::kLargeSize}, | 177 {"swdh_unregister_cannot_scope_url", crash_keys::kLargeSize}, |
178 | 178 |
179 // Temporary for https://crbug.com/630496. | 179 // Temporary for https://crbug.com/630496. |
180 {"swdh_get_registration_cannot_host_url", crash_keys::kLargeSize}, | 180 {"swdh_get_registration_cannot_host_url", crash_keys::kLargeSize}, |
181 {"swdh_get_registration_cannot_document_url", crash_keys::kLargeSize}, | 181 {"swdh_get_registration_cannot_document_url", crash_keys::kLargeSize}, |
| 182 |
| 183 // Temporary for https://crbug.com/647068. |
| 184 {"received_quit_message", crash_keys::kSmallSize}, |
182 }; | 185 }; |
183 | 186 |
184 // This dynamic set of keys is used for sets of key value pairs when gathering | 187 // This dynamic set of keys is used for sets of key value pairs when gathering |
185 // a collection of data, like command line switches or extension IDs. | 188 // a collection of data, like command line switches or extension IDs. |
186 std::vector<base::debug::CrashKey> keys(fixed_keys, | 189 std::vector<base::debug::CrashKey> keys(fixed_keys, |
187 fixed_keys + arraysize(fixed_keys)); | 190 fixed_keys + arraysize(fixed_keys)); |
188 | 191 |
189 crash_keys::GetCrashKeysForCommandLineSwitches(&keys); | 192 crash_keys::GetCrashKeysForCommandLineSwitches(&keys); |
190 | 193 |
191 // Register the extension IDs. | 194 // Register the extension IDs. |
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
376 bool ChromeCrashReporterClient::GetCollectStatsInSample() { | 379 bool ChromeCrashReporterClient::GetCollectStatsInSample() { |
377 return install_static::GetCollectStatsInSample(); | 380 return install_static::GetCollectStatsInSample(); |
378 } | 381 } |
379 | 382 |
380 bool ChromeCrashReporterClient::EnableBreakpadForProcess( | 383 bool ChromeCrashReporterClient::EnableBreakpadForProcess( |
381 const std::string& process_type) { | 384 const std::string& process_type) { |
382 return process_type == install_static::kRendererProcess || | 385 return process_type == install_static::kRendererProcess || |
383 process_type == install_static::kPpapiPluginProcess || | 386 process_type == install_static::kPpapiPluginProcess || |
384 process_type == install_static::kGpuProcess; | 387 process_type == install_static::kGpuProcess; |
385 } | 388 } |
OLD | NEW |