| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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/browsing_data_managers/crw_cookie_browsing_data_manager.h" | 5 #import "ios/web/browsing_data_managers/crw_cookie_browsing_data_manager.h" |
| 6 | 6 |
| 7 #import "base/logging.h" | 7 #import "base/logging.h" |
| 8 #include "ios/web/public/browser_state.h" | 8 #include "ios/web/public/browser_state.h" |
| 9 | 9 |
| 10 @implementation CRWCookieBrowsingDataManager { | 10 @implementation CRWCookieBrowsingDataManager { |
| 11 web::BrowserState* _browserState; // Weak, owns this object. | 11 web::BrowserState* _browserState; // Weak, owns this object. |
| 12 } | 12 } |
| 13 | 13 |
| 14 - (instancetype)initWithBrowserState:(web::BrowserState*)browserState { | 14 - (instancetype)initWithBrowserState:(web::BrowserState*)browserState { |
| 15 self = [super init]; | 15 self = [super init]; |
| 16 if (self) { | 16 if (self) { |
| 17 DCHECK(browserState); | 17 DCHECK(browserState); |
| 18 _browserState = browserState; | 18 _browserState = browserState; |
| 19 } | 19 } |
| 20 return self; | 20 return self; |
| 21 } | 21 } |
| 22 | 22 |
| 23 - (instancetype)init { | 23 - (instancetype)init { |
| 24 NOTREACHED(); | 24 NOTREACHED(); |
| 25 return nil; | 25 return nil; |
| 26 } | 26 } |
| 27 | 27 |
| 28 #pragma mark CRWBrowsingDataManager implementation | 28 #pragma mark CRWBrowsingDataManager implementation |
| 29 // TODO(shreyasv): During implementation of the following methods evaluate if | |
| 30 // the entire BrowserState is required. Looks like only |state_path| may be | |
| 31 // required. | |
| 32 | 29 |
| 33 - (void)stashData { | 30 - (void)stashData { |
| 34 // TODO(shreyasv): Implement this. crbug.com/480654 | |
| 35 } | 31 } |
| 36 | 32 |
| 37 - (void)restoreData { | 33 - (void)restoreData { |
| 38 // TODO(shreyasv): Implement this. crbug.com/480654 | |
| 39 } | 34 } |
| 40 | 35 |
| 41 - (void)removeDataAtStashPath { | 36 - (void)removeDataAtStashPath { |
| 42 // TODO(shreyasv): Implement this. crbug.com/480654 | |
| 43 } | 37 } |
| 44 | 38 |
| 45 - (void)removeDataAtCanonicalPath { | 39 - (void)removeDataAtCanonicalPath { |
| 46 // TODO(shreyasv): Implement this. crbug.com/480654 | |
| 47 } | 40 } |
| 48 | 41 |
| 49 @end | 42 @end |
| OLD | NEW |