Index: chrome/browser/utility_process_host.h |
diff --git a/chrome/browser/utility_process_host.h b/chrome/browser/utility_process_host.h |
index 555ef44f9ce4e450b7045d383cfb2ce203b6d8af..279700624bacd1efc6c7137ade2806e9567bee5c 100644 |
--- a/chrome/browser/utility_process_host.h |
+++ b/chrome/browser/utility_process_host.h |
@@ -39,7 +39,7 @@ class UtilityProcessHost : public BrowserChildProcessHost { |
Client() {} |
// Called when the process has crashed. |
- virtual void OnProcessCrashed() {} |
+ virtual void OnProcessCrashed(int exit_code) {} |
// Called when the extension has unpacked successfully. |manifest| is the |
// parsed manifest.json file. |catalogs| contains list of all parsed |
@@ -153,7 +153,7 @@ class UtilityProcessHost : public BrowserChildProcessHost { |
virtual void OnMessageReceived(const IPC::Message& message); |
// BrowserChildProcessHost: |
- virtual void OnProcessCrashed(); |
+ virtual void OnProcessCrashed(int exit_code); |
virtual bool CanShutdown() { return true; } |
virtual URLRequestContext* GetRequestContext( |
uint32 request_id, |