Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(364)

Side by Side Diff: ios/web_view/internal/criwv.mm

Issue 2697453007: Rename CRIWVWebsiteDataStore to CWVWebsiteDataStore. (Closed)
Patch Set: Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « ios/web_view/internal/BUILD.gn ('k') | ios/web_view/internal/criwv_web_view_configuration.mm » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #import "ios/web_view/public/criwv.h" 5 #import "ios/web_view/public/criwv.h"
6 6
7 #include <memory> 7 #include <memory>
8 8
9 #include "base/location.h" 9 #include "base/location.h"
10 #import "base/mac/bind_objc_block.h" 10 #import "base/mac/bind_objc_block.h"
11 #include "base/single_thread_task_runner.h" 11 #include "base/single_thread_task_runner.h"
12 #include "ios/web/public/app/web_main.h" 12 #include "ios/web/public/app/web_main.h"
13 #include "ios/web/public/web_thread.h" 13 #include "ios/web/public/web_thread.h"
14 #import "ios/web_view/internal/criwv_web_main_delegate.h" 14 #import "ios/web_view/internal/criwv_web_main_delegate.h"
15 #import "ios/web_view/public/criwv_delegate.h" 15 #import "ios/web_view/public/criwv_delegate.h"
16 #import "ios/web_view/public/criwv_web_view_configuration.h" 16 #import "ios/web_view/public/criwv_web_view_configuration.h"
17 #import "ios/web_view/public/criwv_website_data_store.h"
18 #import "ios/web_view/public/cwv_web_view.h" 17 #import "ios/web_view/public/cwv_web_view.h"
18 #import "ios/web_view/public/cwv_website_data_store.h"
19 19
20 #if !defined(__has_feature) || !__has_feature(objc_arc) 20 #if !defined(__has_feature) || !__has_feature(objc_arc)
21 #error "This file requires ARC support." 21 #error "This file requires ARC support."
22 #endif 22 #endif
23 23
24 namespace { 24 namespace {
25 CRIWV* g_criwv = nil; 25 CRIWV* g_criwv = nil;
26 } 26 }
27 27
28 @interface CRIWV () { 28 @interface CRIWV () {
(...skipping 14 matching lines...) Expand all
43 g_criwv = [[CRIWV alloc] initWithDelegate:delegate]; 43 g_criwv = [[CRIWV alloc] initWithDelegate:delegate];
44 } 44 }
45 45
46 + (void)shutDown { 46 + (void)shutDown {
47 g_criwv = nil; 47 g_criwv = nil;
48 } 48 }
49 49
50 + (CWVWebView*)webViewWithFrame:(CGRect)frame { 50 + (CWVWebView*)webViewWithFrame:(CGRect)frame {
51 CRIWVWebViewConfiguration* configuration = 51 CRIWVWebViewConfiguration* configuration =
52 [[CRIWVWebViewConfiguration alloc] init]; 52 [[CRIWVWebViewConfiguration alloc] init];
53 configuration.websiteDataStore = [CRIWVWebsiteDataStore defaultDataStore]; 53 configuration.websiteDataStore = [CWVWebsiteDataStore defaultDataStore];
54 54
55 return [[CWVWebView alloc] initWithFrame:frame configuration:configuration]; 55 return [[CWVWebView alloc] initWithFrame:frame configuration:configuration];
56 } 56 }
57 57
58 - (instancetype)initWithDelegate:(id<CRIWVDelegate>)delegate { 58 - (instancetype)initWithDelegate:(id<CRIWVDelegate>)delegate {
59 self = [super init]; 59 self = [super init];
60 if (self) { 60 if (self) {
61 _delegate = delegate; 61 _delegate = delegate;
62 _webMainDelegate.reset(new ios_web_view::CRIWVWebMainDelegate(_delegate)); 62 _webMainDelegate.reset(new ios_web_view::CRIWVWebMainDelegate(_delegate));
63 web::WebMainParams params(_webMainDelegate.get()); 63 web::WebMainParams params(_webMainDelegate.get());
64 _webMain.reset(new web::WebMain(params)); 64 _webMain.reset(new web::WebMain(params));
65 } 65 }
66 return self; 66 return self;
67 } 67 }
68 68
69 - (void)dealloc { 69 - (void)dealloc {
70 _webMain.reset(); 70 _webMain.reset();
71 _webMainDelegate.reset(); 71 _webMainDelegate.reset();
72 } 72 }
73 73
74 @end 74 @end
OLDNEW
« no previous file with comments | « ios/web_view/internal/BUILD.gn ('k') | ios/web_view/internal/criwv_web_view_configuration.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698