| 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 0837b8b0a2a6af650d4bed4bb4898a4d94021e00..b75da411969edd53d859d17226944cc010309e5b 100644
|
| --- a/chrome/browser/ui/cocoa/hung_renderer_controller.mm
|
| +++ b/chrome/browser/ui/cocoa/hung_renderer_controller.mm
|
| @@ -176,8 +176,8 @@ class WebContentsObserverBridge : public content::WebContentsObserver {
|
| DCHECK(contents);
|
| hungContents_ = contents;
|
| hungContentsObserver_.reset(new WebContentsObserverBridge(contents, self));
|
| - scoped_nsobject<NSMutableArray> titles([[NSMutableArray alloc] init]);
|
| - scoped_nsobject<NSMutableArray> favicons([[NSMutableArray alloc] init]);
|
| + base::scoped_nsobject<NSMutableArray> titles([[NSMutableArray alloc] init]);
|
| + base::scoped_nsobject<NSMutableArray> favicons([[NSMutableArray alloc] init]);
|
| for (TabContentsIterator it; !it.done(); it.Next()) {
|
| if (it->GetRenderProcessHost() == hungContents_->GetRenderProcessHost()) {
|
| string16 title = it->GetTitle();
|
|
|