| Index: ios/web_view/public/criwv_web_view.h
|
| diff --git a/ios/web_view/public/criwv_web_view.h b/ios/web_view/public/criwv_web_view.h
|
| index 1bc56978383acf4cd9acfac6a27c0da72701078d..01afa0177580af666cf0a617ae384659a306f842 100644
|
| --- a/ios/web_view/public/criwv_web_view.h
|
| +++ b/ios/web_view/public/criwv_web_view.h
|
| @@ -6,6 +6,7 @@
|
|
|
| #import <UIKit/UIKit.h>
|
|
|
| +@class CRIWVWebViewConfiguration;
|
| @protocol CRIWVWebViewDelegate;
|
|
|
| // A web view component (like WKWebView) which uses iOS Chromium's web view
|
| @@ -40,6 +41,11 @@
|
| // undefined if the web view is not currently loading.
|
| @property(nonatomic, readonly) CGFloat loadProgress;
|
|
|
| +// |configuration| must not be null
|
| +- (instancetype)initWithFrame:(CGRect)frame
|
| + configuration:(CRIWVWebViewConfiguration*)configuration
|
| + NS_DESIGNATED_INITIALIZER;
|
| +
|
| - (instancetype)initWithFrame:(CGRect)frame NS_UNAVAILABLE;
|
| - (instancetype)initWithCoder:(NSCoder*)aDecoder NS_UNAVAILABLE;
|
|
|
|
|