| Index: ios/chrome/browser/tabs/tab_model.h
|
| diff --git a/ios/chrome/browser/tabs/tab_model.h b/ios/chrome/browser/tabs/tab_model.h
|
| index e2e0a8fe112a3342ee07343e5b5760001e800d1e..c5774892622aa0961e1fe96effe93f5a90a5770c 100644
|
| --- a/ios/chrome/browser/tabs/tab_model.h
|
| +++ b/ios/chrome/browser/tabs/tab_model.h
|
| @@ -228,10 +228,8 @@ NSUInteger const kTabPositionAutomatically = NSNotFound;
|
| - (void)moveTab:(Tab*)tab toIndex:(NSUInteger)index;
|
|
|
| // Replaces |oldTab| in the model with |newTab|. Closes the oldTab when
|
| -// replacing it in the model unless |keepOldTabOpen|.
|
| -- (void)replaceTab:(Tab*)oldTab
|
| - withTab:(Tab*)newTab
|
| - keepOldTabOpen:(BOOL)keepOldTabOpen;
|
| +// replacing it in the model.
|
| +- (void)replaceTab:(Tab*)oldTab withTab:(Tab*)newTab;
|
|
|
| // Closes the tab at the given |index|. |index| must be valid.
|
| - (void)closeTabAtIndex:(NSUInteger)index;
|
|
|