blob: 0e8a8b5826d9bd29564d7a7370b73480f2854041 [file] [log] [blame]
// Copyright 2015 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/browsing_data_managers/crw_cookie_browsing_data_manager.h"
#import "base/logging.h"
#include "ios/web/public/browser_state.h"
@implementation CRWCookieBrowsingDataManager {
web::BrowserState* _browserState; // Weak, owns this object.
}
- (instancetype)initWithBrowserState:(web::BrowserState*)browserState {
self = [super init];
if (self) {
DCHECK(browserState);
_browserState = browserState;
}
return self;
}
- (instancetype)init {
NOTREACHED();
return nil;
}
#pragma mark CRWBrowsingDataManager implementation
- (void)stashData {
}
- (void)restoreData {
}
- (void)removeDataAtStashPath {
}
- (void)removeDataAtCanonicalPath {
}
@end