| Index: chrome/browser/ui/tabs/tab_strip_model.cc
|
| diff --git a/chrome/browser/ui/tabs/tab_strip_model.cc b/chrome/browser/ui/tabs/tab_strip_model.cc
|
| index 91042c7a0a60a40aaed18397615fa5422c8fd6fb..9d9494c771447f050710eae70daa7e519181c3de 100644
|
| --- a/chrome/browser/ui/tabs/tab_strip_model.cc
|
| +++ b/chrome/browser/ui/tabs/tab_strip_model.cc
|
| @@ -1202,6 +1202,8 @@ bool TabStripModel::InternalCloseTabs(const std::vector<int>& indices,
|
| std::map<content::RenderProcessHost*, size_t> processes;
|
| for (size_t i = 0; i < indices.size(); ++i) {
|
| WebContents* closing_contents = GetWebContentsAtImpl(indices[i]);
|
| + if (!delegate_->CanFastShutdownWebContents(closing_contents))
|
| + continue;
|
| content::RenderProcessHost* process =
|
| closing_contents->GetRenderProcessHost();
|
| ++processes[process];
|
|
|