Index: chrome/browser/profile_import_process_host.h |
diff --git a/chrome/browser/profile_import_process_host.h b/chrome/browser/profile_import_process_host.h |
index a9d58059e05465cd5478cab2e1045ba580f890c6..2e77573d2a6a800a9844a9b0e6ab1647b5b09843 100644 |
--- a/chrome/browser/profile_import_process_host.h |
+++ b/chrome/browser/profile_import_process_host.h |
@@ -40,7 +40,7 @@ class ProfileImportProcessHost : public BrowserChildProcessHost { |
// These methods are used by the ProfileImportProcessHost to pass messages |
// received from the external process back to the ImportProcessClient in |
// ImporterHost. |
- virtual void OnProcessCrashed() {} |
+ virtual void OnProcessCrashed(int exit_status) {} |
virtual void OnImportStart() {} |
virtual void OnImportFinished(bool succeeded, std::string error_msg) {} |
virtual void OnImportItemStart(int item) {} |
@@ -126,7 +126,7 @@ class ProfileImportProcessHost : public BrowserChildProcessHost { |
void OnMessageReceived(const IPC::Message& message); |
// Overridden from BrowserChildProcessHost: |
- virtual void OnProcessCrashed(); |
+ virtual void OnProcessCrashed(int exit_code); |
virtual bool CanShutdown(); |
virtual URLRequestContext* GetRequestContext( |
uint32 request_id, |