| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef IOS_CLEAN_CHROME_BROWSER_UI_ACTIONS_TAB_STRIP_ACTIONS_H_ | 5 #ifndef IOS_CLEAN_CHROME_BROWSER_UI_ACTIONS_TAB_STRIP_ACTIONS_H_ |
| 6 #define IOS_CLEAN_CHROME_BROWSER_UI_ACTIONS_TAB_STRIP_ACTIONS_H_ | 6 #define IOS_CLEAN_CHROME_BROWSER_UI_ACTIONS_TAB_STRIP_ACTIONS_H_ |
| 7 | 7 |
| 8 #import <Foundation/Foundation.h> | 8 #import <Foundation/Foundation.h> |
| 9 | 9 |
| 10 // Target/Action methods relating to the tab strip. | 10 // Target/Action methods relating to the tab strip. |
| 11 @protocol TabStripActions | 11 @protocol TabStripActions |
| 12 @optional | 12 @optional |
| 13 // Shows the tab strip. | |
| 14 - (void)showTabStrip:(id)sender; | |
| 15 // Hides the tab strip. | 13 // Hides the tab strip. |
| 16 - (void)hideTabStrip:(id)sender; | 14 - (void)hideTabStrip:(id)sender; |
| 17 @end | 15 @end |
| 18 | 16 |
| 19 #endif // IOS_CLEAN_CHROME_BROWSER_UI_ACTIONS_TAB_STRIP_ACTIONS_H_ | 17 #endif // IOS_CLEAN_CHROME_BROWSER_UI_ACTIONS_TAB_STRIP_ACTIONS_H_ |
| OLD | NEW |