Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #import "ios/web_view/public/criwv_web_view_configuration.h" | |
| 6 | |
| 7 #import "ios/web_view/public/criwv_website_data_store.h" | |
| 8 | |
| 9 #if !defined(__has_feature) || !__has_feature(objc_arc) | |
| 10 #error "This file requires ARC support." | |
| 11 #endif | |
| 12 | |
| 13 @implementation CRIWVWebViewConfiguration | |
| 14 | |
| 15 @synthesize websiteDataStore = _websiteDataStore; | |
| 16 | |
| 17 - (instancetype)init { | |
| 18 self = [super init]; | |
| 19 if (self) { | |
| 20 self.websiteDataStore = [CRIWVWebsiteDataStore defaultDataStore]; | |
|
Eugene But (OOO till 7-30)
2017/02/07 01:27:46
s/self.websiteDataStore/_websiteDataStore
https:/
michaeldo
2017/02/08 20:40:48
Done.
| |
| 21 } | |
| 22 return self; | |
| 23 } | |
| 24 | |
| 25 @end | |
| OLD | NEW |