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

Unified Diff: chrome/test/chromedriver/chrome_launcher.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: chrome/test/chromedriver/chrome_launcher.cc
diff --git a/chrome/test/chromedriver/chrome_launcher.cc b/chrome/test/chromedriver/chrome_launcher.cc
index 90ddedead93637c9053e92559cbe6f62e7edcec6..be302dc2a2ac5e7f074d27179092456b1c1b7a14 100644
--- a/chrome/test/chromedriver/chrome_launcher.cc
+++ b/chrome/test/chromedriver/chrome_launcher.cc
@@ -386,6 +386,9 @@ Status LaunchDesktopChrome(
case base::TERMINATION_STATUS_PROCESS_CRASHED:
termination_reason = "crashed";
break;
+ case base::TERMINATION_STATUS_LAUNCH_FAILED:
+ termination_reason = "failed to launch";
+ break;
default:
termination_reason = "unknown";
break;
« no previous file with comments | « chrome/browser/ui/views/tabs/tab_renderer_data.cc ('k') | chromecast/browser/metrics/cast_stability_metrics_provider.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698