Index: ios/clean/chrome/browser/ui/commands/find_in_page_visibility_commands.h |
diff --git a/ios/clean/chrome/browser/ui/commands/find_in_page_visibility_commands.h b/ios/clean/chrome/browser/ui/commands/find_in_page_visibility_commands.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..da2e75c199d9b1bd14ea8b713f1103f0b9479bdb |
--- /dev/null |
+++ b/ios/clean/chrome/browser/ui/commands/find_in_page_visibility_commands.h |
@@ -0,0 +1,17 @@ |
+// Copyright 2017 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#ifndef IOS_CLEAN_CHROME_BROWSER_UI_COMMANDS_FIND_IN_PAGE_VISIBILITY_COMMANDS_H_ |
+#define IOS_CLEAN_CHROME_BROWSER_UI_COMMANDS_FIND_IN_PAGE_VISIBILITY_COMMANDS_H_ |
+ |
+// Command protocol for commands relating to showing and hiding Find In Page. |
+@protocol FindInPageVisibilityCommands |
+// Show the find in page UI. |
+- (void)showFindInPage; |
+ |
+// Hide the find in page UI. |
+- (void)hideFindInPage; |
+@end |
+ |
+#endif // IOS_CLEAN_CHROME_BROWSER_UI_COMMANDS_FIND_IN_PAGE_VISIBILITY_COMMANDS_H_ |