| Index: ios/web_view/internal/criwv.mm
|
| diff --git a/ios/web_view/internal/criwv.mm b/ios/web_view/internal/criwv.mm
|
| index bef570e1c4248bfa3ec954adaaf28e827a2dc37d..deecb508e3ee8a66523a33cbd2ce96bab78e80b7 100644
|
| --- a/ios/web_view/internal/criwv.mm
|
| +++ b/ios/web_view/internal/criwv.mm
|
| @@ -13,9 +13,9 @@
|
| #include "ios/web/public/web_thread.h"
|
| #import "ios/web_view/internal/criwv_web_main_delegate.h"
|
| #import "ios/web_view/public/criwv_delegate.h"
|
| -#import "ios/web_view/public/criwv_web_view.h"
|
| #import "ios/web_view/public/criwv_web_view_configuration.h"
|
| #import "ios/web_view/public/criwv_website_data_store.h"
|
| +#import "ios/web_view/public/cwv_web_view.h"
|
|
|
| #if !defined(__has_feature) || !__has_feature(objc_arc)
|
| #error "This file requires ARC support."
|
| @@ -47,12 +47,12 @@ CRIWV* g_criwv = nil;
|
| g_criwv = nil;
|
| }
|
|
|
| -+ (CRIWVWebView*)webViewWithFrame:(CGRect)frame {
|
| ++ (CWVWebView*)webViewWithFrame:(CGRect)frame {
|
| CRIWVWebViewConfiguration* configuration =
|
| [[CRIWVWebViewConfiguration alloc] init];
|
| configuration.websiteDataStore = [CRIWVWebsiteDataStore defaultDataStore];
|
|
|
| - return [[CRIWVWebView alloc] initWithFrame:frame configuration:configuration];
|
| + return [[CWVWebView alloc] initWithFrame:frame configuration:configuration];
|
| }
|
|
|
| - (instancetype)initWithDelegate:(id<CRIWVDelegate>)delegate {
|
|
|