| Index: ios/web_view/public/criwv.h
|
| diff --git a/ios/web_view/public/criwv.h b/ios/web_view/public/criwv.h
|
| index f90a34a85a230dbdbcdb536e697ae82062fced81..1f999e9a765f2aa8dccbf5f9bdf4882aedc6b0b8 100644
|
| --- a/ios/web_view/public/criwv.h
|
| +++ b/ios/web_view/public/criwv.h
|
| @@ -5,10 +5,11 @@
|
| #ifndef IOS_WEB_VIEW_PUBLIC_CRIWV_H_
|
| #define IOS_WEB_VIEW_PUBLIC_CRIWV_H_
|
|
|
| +#import <CoreGraphics/CoreGraphics.h>
|
| #import <Foundation/Foundation.h>
|
|
|
| @protocol CRIWVDelegate;
|
| -@protocol CRIWVWebView;
|
| +@class CRIWVWebView;
|
|
|
| // Main interface for the CRIWV library.
|
| __attribute__((visibility("default")))
|
| @@ -23,7 +24,7 @@ __attribute__((visibility("default")))
|
| + (void)shutDown;
|
|
|
| // Creates and returns a web view.
|
| -+ (id<CRIWVWebView>)webView;
|
| ++ (CRIWVWebView*)webViewWithFrame:(CGRect)frame;
|
|
|
| @end
|
|
|
|
|