| Index: content/browser/renderer_host/render_process_host_impl.cc
|
| diff --git a/content/browser/renderer_host/render_process_host_impl.cc b/content/browser/renderer_host/render_process_host_impl.cc
|
| index b3193c5fd213da998e110380e32bdb3da6392560..154ad46e50eecd2539918ab2aac7a0f725baf94e 100644
|
| --- a/content/browser/renderer_host/render_process_host_impl.cc
|
| +++ b/content/browser/renderer_host/render_process_host_impl.cc
|
| @@ -1332,3 +1332,10 @@ void RenderProcessHostImpl::OnSavedPageAsMHTML(int job_id, int64 data_size) {
|
| content::GetContentClient()->browser()->GetMHTMLGenerationManager()->
|
| MHTMLGenerated(job_id, data_size);
|
| }
|
| +
|
| +bool RenderProcessHostImpl::AllowTerminateOnUnresponsive() const {
|
| + if (listeners_.size() > 1)
|
| + return false;
|
| +
|
| + return true;
|
| +}
|
|
|