0

Fix typo in method name

Bug: none
Change-Id: Ie770bb3f7800967df1b23332ec95510a13ae9e88
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/6433976
Reviewed-by: Ewann Pellé <ewannpv@chromium.org>
Commit-Queue: Louis Romero <lpromero@google.com>
Auto-Submit: Louis Romero <lpromero@google.com>
Commit-Queue: Ewann Pellé <ewannpv@chromium.org>
Cr-Commit-Position: refs/heads/main@{#1443530}
This commit is contained in:
Louis Romero
2025-04-07 09:21:31 -07:00
committed by Chromium LUCI CQ
parent 393ed7db1c
commit 882174e6f9

@@ -188,7 +188,7 @@ NSArray<UIView*>* GetTabGroupViewsToAnimateClosure(
// Register InactiveTabsButtonCell. // Register InactiveTabsButtonCell.
auto configureInactiveTabsButtonCell = auto configureInactiveTabsButtonCell =
^(InactiveTabsButtonCell* cell, NSIndexPath* indexPath, id item) { ^(InactiveTabsButtonCell* cell, NSIndexPath* indexPath, id item) {
[weakSelf configureInativeTabsButtonCell:cell]; [weakSelf configureInactiveTabsButtonCell:cell];
}; };
_inactiveTabsButtonCellRegistration = [UICollectionViewCellRegistration _inactiveTabsButtonCellRegistration = [UICollectionViewCellRegistration
registrationWithCellClass:InactiveTabsButtonCell.class registrationWithCellClass:InactiveTabsButtonCell.class
@@ -294,7 +294,7 @@ NSArray<UIView*>* GetTabGroupViewsToAnimateClosure(
} }
// Configures `cell` according to the current state. // Configures `cell` according to the current state.
- (void)configureInativeTabsButtonCell:(InactiveTabsButtonCell*)cell { - (void)configureInactiveTabsButtonCell:(InactiveTabsButtonCell*)cell {
cell.count = _inactiveTabsCount; cell.count = _inactiveTabsCount;
cell.daysThreshold = _inactiveTabsDaysThreshold; cell.daysThreshold = _inactiveTabsDaysThreshold;
} }