| Index: ios/web/shell/view_controller.h
|
| diff --git a/ios/web/shell/view_controller.h b/ios/web/shell/view_controller.h
|
| index 5e693256f0dcb2340c938c3ff6348b6269fb152f..1471e03a2bdcfcb19cf520cac6fa9b5e23945cb1 100644
|
| --- a/ios/web/shell/view_controller.h
|
| +++ b/ios/web/shell/view_controller.h
|
| @@ -9,6 +9,7 @@
|
|
|
| namespace web {
|
| class BrowserState;
|
| +class WebState;
|
| }
|
|
|
| // Accessibility label for the back button.
|
| @@ -23,11 +24,14 @@ extern NSString* const kWebShellAddressFieldAccessibilityLabel;
|
|
|
| @property(nonatomic, retain) IBOutlet UIView* containerView;
|
| @property(nonatomic, retain) IBOutlet UIToolbar* toolbarView;
|
| +//@property(nonatomic, assign, readonly) web::WebState* webState;
|
|
|
| // Initializes a new ViewController from |MainView.xib| using the given
|
| // |browserState|.
|
| - (instancetype)initWithBrowserState:(web::BrowserState*)browserState;
|
|
|
| +- (web::WebState*)webState;
|
| +
|
| @end
|
|
|
| #endif // IOS_WEB_SHELL_VIEW_CONTROLLER_H_
|
|
|