| 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 a6129a159519ca64d12c0c423fd6c88c47f233f0..fabb947b54b6c8f85c7bc0e5ebf0d40abda5a5c0 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 {
|
| virtual 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,
|
|
|