Index: ios/web_view/internal/criwv_web_view_configuration.mm |
diff --git a/ios/web_view/internal/criwv_web_view_configuration.mm b/ios/web_view/internal/criwv_web_view_configuration.mm |
deleted file mode 100644 |
index e70045a86a0b0b2d89ef857d143cfa980ccd1bfc..0000000000000000000000000000000000000000 |
--- a/ios/web_view/internal/criwv_web_view_configuration.mm |
+++ /dev/null |
@@ -1,41 +0,0 @@ |
-// Copyright 2017 The Chromium Authors. All rights reserved. |
-// Use of this source code is governed by a BSD-style license that can be |
-// found in the LICENSE file. |
- |
-#import "ios/web_view/public/criwv_web_view_configuration.h" |
- |
-#import "ios/web_view/public/cwv_website_data_store.h" |
- |
-#if !defined(__has_feature) || !__has_feature(objc_arc) |
-#error "This file requires ARC support." |
-#endif |
- |
-@interface CRIWVWebViewConfiguration () |
-// Initialize configuration with specified data store. |
-- (instancetype)initWithDataStore:(CWVWebsiteDataStore*)dataStore; |
-@end |
- |
-@implementation CRIWVWebViewConfiguration |
- |
-@synthesize websiteDataStore = _websiteDataStore; |
- |
-- (instancetype)init { |
- return [self initWithDataStore:[CWVWebsiteDataStore defaultDataStore]]; |
-} |
- |
-- (instancetype)initWithDataStore:(CWVWebsiteDataStore*)dataStore { |
- self = [super init]; |
- if (self) { |
- _websiteDataStore = dataStore; |
- } |
- return self; |
-} |
- |
-// NSCopying |
- |
-- (id)copyWithZone:(NSZone*)zone { |
- return |
- [[[self class] allocWithZone:zone] initWithDataStore:_websiteDataStore]; |
-} |
- |
-@end |