Chromium Code Reviews| 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_TOOLBAR_TOOLBAR_WEB_STATE_CONSUMER_H_ | |
| 6 #define IOS_CLEAN_CHROME_BROWSER_UI_TOOLBAR_TOOLBAR_WEB_STATE_CONSUMER_H_ | |
| 7 | |
| 8 #import <UIKit/UIKit.h> | |
| 9 | |
| 10 // ToolbarWebStateConsumer sets the current appeareance of the Toolbar based on | |
|
edchin
2017/02/21 07:56:11
nit: spelling. appearance.
sczs
2017/02/21 17:28:27
Done.
| |
| 11 // WebState information provided by this protocol. | |
| 12 @protocol ToolbarWebStateConsumer | |
|
marq (ping after 24h)
2017/02/21 12:04:24
The general model I'd like to adopt is that the vi
sczs
2017/02/21 17:28:27
Done.
| |
| 13 // Sets the text for a label appearing in the center of the toolbar. | |
| 14 - (void)setCurrentPageText:(NSString*)text; | |
| 15 @end | |
| 16 | |
| 17 #endif // IOS_CLEAN_CHROME_BROWSER_UI_TOOLBAR_TOOLBAR_WEB_STATE_CONSUMER_H_ | |
| OLD | NEW |