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

Unified Diff: content/browser/browser_plugin/browser_plugin_guest.cc

Issue 1320153002: Add new termination status for failed launch (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase and a nit. Created 5 years, 3 months 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 side-by-side diff with in-line comments
Download patch
Index: content/browser/browser_plugin/browser_plugin_guest.cc
diff --git a/content/browser/browser_plugin/browser_plugin_guest.cc b/content/browser/browser_plugin/browser_plugin_guest.cc
index b0de6b9f762ef7a2e675f196646d777ec0c24059..6c8cfd7812eae9be681ea4d8b0672a87f8518ca7 100644
--- a/content/browser/browser_plugin/browser_plugin_guest.cc
+++ b/content/browser/browser_plugin/browser_plugin_guest.cc
@@ -617,6 +617,9 @@ void BrowserPluginGuest::RenderProcessGone(base::TerminationStatus status) {
RecordAction(
base::UserMetricsAction("BrowserPlugin.Guest.AbnormalDeath"));
break;
+ case base::TERMINATION_STATUS_LAUNCH_FAILED:
+ RecordAction(base::UserMetricsAction("BrowserPlugin.Guest.LaunchFailed"));
+ break;
default:
break;
}
« no previous file with comments | « chromecast/browser/metrics/cast_stability_metrics_provider.cc ('k') | content/browser/child_process_launcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698