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

Unified Diff: content/public/browser/browser_child_process_host_delegate.h

Issue 1923653002: Wire up process launch error codes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix debug and clang Created 4 years, 8 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
« no previous file with comments | « content/common/sandbox_win.cc ('k') | content/public/browser/render_process_host_observer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/browser/browser_child_process_host_delegate.h
diff --git a/content/public/browser/browser_child_process_host_delegate.h b/content/public/browser/browser_child_process_host_delegate.h
index ac59a2e553cd53435aa562e18be8eea2c3c0844e..892ca25c9f9a917e893a851356277267ebe19bad 100644
--- a/content/public/browser/browser_child_process_host_delegate.h
+++ b/content/public/browser/browser_child_process_host_delegate.h
@@ -27,8 +27,8 @@ class CONTENT_EXPORT BrowserChildProcessHostDelegate : public IPC::Listener {
virtual void OnProcessLaunched() {}
// Called if the process failed to launch. In this case the process never
- // started so there is no available exit code.
- virtual void OnProcessLaunchFailed() {}
+ // started so the code here is a platform specific error code.
+ virtual void OnProcessLaunchFailed(int error_code) {}
// Called if the process crashed. |exit_code| is the status returned when the
// process crashed (for posix, as returned from waitpid(), for Windows, as
« no previous file with comments | « content/common/sandbox_win.cc ('k') | content/public/browser/render_process_host_observer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698