Chromium Code Reviews| Index: chrome/browser/metrics/metrics_log.cc |
| =================================================================== |
| --- chrome/browser/metrics/metrics_log.cc (revision 33701) |
| +++ chrome/browser/metrics/metrics_log.cc (working copy) |
| @@ -447,11 +447,23 @@ |
| pref->SetInteger(prefs::kStabilityRendererCrashCount, 0); |
| } |
| + count = pref->GetInteger(prefs::kStabilityExtensionRendererCrashCount); |
| + if (count) { |
| + WriteIntAttribute("extensionrenderercrashcount", count); |
|
jar (doing other things)
2009/12/18 16:28:14
Do you have corresponding changes to the protobuff
asargent_no_longer_on_chrome
2010/01/05 01:01:19
I was under the impression that doing this here is
|
| + pref->SetInteger(prefs::kStabilityExtensionRendererCrashCount, 0); |
| + } |
| + |
| count = pref->GetInteger(prefs::kStabilityRendererHangCount); |
| if (count) { |
| WriteIntAttribute("rendererhangcount", count); |
| pref->SetInteger(prefs::kStabilityRendererHangCount, 0); |
| } |
| + |
| + count = pref->GetInteger(prefs::kStabilityChildProcessCrashCount); |
| + if (count) { |
| + WriteIntAttribute("childprocesscrashcount", count); |
| + pref->SetInteger(prefs::kStabilityChildProcessCrashCount, 0); |
| + } |
| } |
| void MetricsLog::WritePluginList( |