OLD | NEW |
1 // Copyright 2017 The Chromium Authors. All rights reserved. | 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 | 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_TOOLBAR_TOOLBAR_CONSUMER_H_ | 5 #ifndef IOS_CLEAN_CHROME_BROWSER_UI_TOOLBAR_TOOLBAR_CONSUMER_H_ |
6 #define IOS_CLEAN_CHROME_BROWSER_UI_TOOLBAR_TOOLBAR_CONSUMER_H_ | 6 #define IOS_CLEAN_CHROME_BROWSER_UI_TOOLBAR_TOOLBAR_CONSUMER_H_ |
7 | 7 |
8 #import <UIKit/UIKit.h> | 8 #import <UIKit/UIKit.h> |
9 | 9 |
10 // ToolbarConsumer sets the current appearance of the Toolbar. | 10 // ToolbarConsumer sets the current appearance of the Toolbar. |
11 @protocol ToolbarConsumer | 11 @protocol ToolbarConsumer |
12 // Sets the text for a label appearing in the center of the toolbar. | |
13 - (void)setCurrentPageText:(NSString*)text; | |
14 // Updates the toolbar with the current forward navigation state. | 12 // Updates the toolbar with the current forward navigation state. |
15 - (void)setCanGoForward:(BOOL)canGoForward; | 13 - (void)setCanGoForward:(BOOL)canGoForward; |
16 // Updates the toolbar with the current back navigation state. | 14 // Updates the toolbar with the current back navigation state. |
17 - (void)setCanGoBack:(BOOL)canGoBack; | 15 - (void)setCanGoBack:(BOOL)canGoBack; |
18 // Updates the toolbar with the current loading state. | 16 // Updates the toolbar with the current loading state. |
19 - (void)setIsLoading:(BOOL)isLoading; | 17 - (void)setIsLoading:(BOOL)isLoading; |
| 18 // Updates the toolbar with the current progress of the loading WebState. |
| 19 - (void)setLoadingProgress:(double)progress; |
20 @end | 20 @end |
21 | 21 |
22 #endif // IOS_CLEAN_CHROME_BROWSER_UI_TOOLBAR_TOOLBAR_CONSUMER_H_ | 22 #endif // IOS_CLEAN_CHROME_BROWSER_UI_TOOLBAR_TOOLBAR_CONSUMER_H_ |
OLD | NEW |