diff --git a/atom/browser/atom_browser_client.cc b/atom/browser/atom_browser_client.cc index f7436c7761..b0faea1b5a 100644 --- a/atom/browser/atom_browser_client.cc +++ b/atom/browser/atom_browser_client.cc @@ -166,7 +166,8 @@ bool AtomBrowserClient::RendererDisablesPopups(int process_id) { } void AtomBrowserClient::RenderProcessWillLaunch( - content::RenderProcessHost* host) { + content::RenderProcessHost* host, + service_manager::mojom::ServiceRequest* service_request)) { // When a render process is crashed, it might be reused. int process_id = host->GetID(); if (IsProcessObserved(process_id)) diff --git a/atom/browser/atom_browser_client.h b/atom/browser/atom_browser_client.h index abb1f81db7..de04934e2c 100644 --- a/atom/browser/atom_browser_client.h +++ b/atom/browser/atom_browser_client.h @@ -48,7 +48,9 @@ class AtomBrowserClient : public brightray::BrowserClient, protected: // content::ContentBrowserClient: - void RenderProcessWillLaunch(content::RenderProcessHost* host) override; + void RenderProcessWillLaunch( + content::RenderProcessHost* host, + service_manager::mojom::ServiceRequest* service_request) override; content::SpeechRecognitionManagerDelegate* CreateSpeechRecognitionManagerDelegate() override; void OverrideWebkitPrefs(content::RenderViewHost* render_view_host,