OLD | NEW |
(Empty) | |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef IOS_CLEAN_CHROME_BROWSER_UI_COMMANDS_FIND_IN_PAGE_VISIBILITY_COMMANDS_H_ |
| 6 #define IOS_CLEAN_CHROME_BROWSER_UI_COMMANDS_FIND_IN_PAGE_VISIBILITY_COMMANDS_H_ |
| 7 |
| 8 // Command protocol for commands relating to showing and hiding Find In Page. |
| 9 @protocol FindInPageVisibilityCommands |
| 10 // Show the find in page UI. |
| 11 - (void)showFindInPage; |
| 12 |
| 13 // Hide the find in page UI. |
| 14 - (void)hideFindInPage; |
| 15 @end |
| 16 |
| 17 #endif // IOS_CLEAN_CHROME_BROWSER_UI_COMMANDS_FIND_IN_PAGE_VISIBILITY_COMMANDS
_H_ |
OLD | NEW |