| Index: ios/chrome/browser/ui/tab_switcher/tab_switcher_panel_controller.mm
|
| diff --git a/ios/chrome/browser/ui/tab_switcher/tab_switcher_panel_controller.mm b/ios/chrome/browser/ui/tab_switcher/tab_switcher_panel_controller.mm
|
| index aac14c8cde6fe22670ef0d79e97049031f25cf1a..da2519be894d603afb72fa4253c554b113ffc214 100644
|
| --- a/ios/chrome/browser/ui/tab_switcher/tab_switcher_panel_controller.mm
|
| +++ b/ios/chrome/browser/ui/tab_switcher/tab_switcher_panel_controller.mm
|
| @@ -237,6 +237,7 @@ void FillVectorWithHashesUsingDistantSession(
|
| [panelCell setTitle:SysUTF16ToNSString(tab->title)];
|
| [panelCell setSessionGURL:tab->virtual_url
|
| withBrowserState:[_model browserState]];
|
| + [panelCell setDelegate:self];
|
| } else {
|
| NSString* identifier = [TabSwitcherLocalSessionCell identifier];
|
| TabSwitcherLocalSessionCell* panelCell =
|
| @@ -247,10 +248,10 @@ void FillVectorWithHashesUsingDistantSession(
|
|
|
| Tab* tab = _localSession->tabs()[tabIndex];
|
| [panelCell setSessionType:_sessionType];
|
| + [panelCell setDelegate:self];
|
| [panelCell setAppearanceForTab:tab cellSize:[_panelView cellSize]];
|
| }
|
| DCHECK(cell);
|
| - cell.delegate = self;
|
| return cell;
|
| }
|
|
|
|
|