| Index: chrome/browser/ui/cocoa/hung_renderer_controller.mm
|
| diff --git a/chrome/browser/ui/cocoa/hung_renderer_controller.mm b/chrome/browser/ui/cocoa/hung_renderer_controller.mm
|
| index 12529acd18af6f2d86a922c43435a1d9097b7062..1ebc1fab3afdcc6ff28554df586f1b70e6d56cd8 100644
|
| --- a/chrome/browser/ui/cocoa/hung_renderer_controller.mm
|
| +++ b/chrome/browser/ui/cocoa/hung_renderer_controller.mm
|
| @@ -175,11 +175,11 @@ class WebContentsObserverBridge : public content::WebContentsObserver {
|
| for (TabContentsIterator it; !it.done(); ++it) {
|
| if (it->web_contents()->GetRenderProcessHost() ==
|
| hungContents_->GetRenderProcessHost()) {
|
| - string16 title = (*it)->web_contents()->GetTitle();
|
| + string16 title = it->web_contents()->GetTitle();
|
| if (title.empty())
|
| title = CoreTabHelper::GetDefaultTitle();
|
| [titles addObject:base::SysUTF16ToNSString(title)];
|
| - [favicons addObject:mac::FaviconForTabContents(*it)];
|
| + [favicons addObject:mac::FaviconForWebContents(it->web_contents())];
|
| }
|
| }
|
| hungTitles_.reset([titles copy]);
|
|
|