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:

committed by
Chromium LUCI CQ

parent
393ed7db1c
commit
882174e6f9
@ -188,7 +188,7 @@ NSArray<UIView*>* GetTabGroupViewsToAnimateClosure(
|
||||
// Register InactiveTabsButtonCell.
|
||||
auto configureInactiveTabsButtonCell =
|
||||
^(InactiveTabsButtonCell* cell, NSIndexPath* indexPath, id item) {
|
||||
[weakSelf configureInativeTabsButtonCell:cell];
|
||||
[weakSelf configureInactiveTabsButtonCell:cell];
|
||||
};
|
||||
_inactiveTabsButtonCellRegistration = [UICollectionViewCellRegistration
|
||||
registrationWithCellClass:InactiveTabsButtonCell.class
|
||||
@ -294,7 +294,7 @@ NSArray<UIView*>* GetTabGroupViewsToAnimateClosure(
|
||||
}
|
||||
|
||||
// Configures `cell` according to the current state.
|
||||
- (void)configureInativeTabsButtonCell:(InactiveTabsButtonCell*)cell {
|
||||
- (void)configureInactiveTabsButtonCell:(InactiveTabsButtonCell*)cell {
|
||||
cell.count = _inactiveTabsCount;
|
||||
cell.daysThreshold = _inactiveTabsDaysThreshold;
|
||||
}
|
||||
|
Reference in New Issue
Block a user