| Index: ios/web_view/public/criwv.h
|
| diff --git a/ios/web_view/public/criwv.h b/ios/web_view/public/criwv.h
|
| index a858af24f72cdf585475360a30be072cd3af2c2d..722f4d9a459621b1611c5265ea92620195301ad5 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.
|
| @interface CRIWV : NSObject
|
| @@ -22,7 +23,7 @@
|
| + (void)shutDown;
|
|
|
| // Creates and returns a web view.
|
| -+ (id<CRIWVWebView>)webView;
|
| ++ (CRIWVWebView*)webViewWithFrame:(CGRect)frame;
|
|
|
| @end
|
|
|
|
|