#ifndef IOS_WEB_SHELL_VIEW_CONTROLLER_H_
#define IOS_WEB_SHELL_VIEW_CONTROLLER_H_
#import <UIKit/UIKit.h>
namespace web {
class BrowserState;
class WebState;
}
extern NSString* const kWebShellBackButtonAccessibilityLabel;
extern NSString* const kWebShellForwardButtonAccessibilityLabel;
extern NSString* const kWebShellAddressFieldAccessibilityLabel;
@interface ViewController : UIViewController
@property(nonatomic, strong) IBOutlet UIView* containerView;
@property(nonatomic, strong) IBOutlet UIToolbar* toolbarView;
@property(nonatomic, assign, readonly) web::WebState* webState;
@end
#endif