blob: d2e2850e9c353b1e0563e6b24e0ce277f60644a5 [file] [log] [blame]
// Copyright 2014 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#import "ios/net/cookies/cookie_store_ios_client.h"
#import "base/task/sequenced_task_runner.h"
namespace {
// The CookieStoreIOSClient.
net::CookieStoreIOSClient* g_client;
} // namespace
namespace net {
void SetCookieStoreIOSClient(CookieStoreIOSClient* client) {
g_client = client;
}
CookieStoreIOSClient* GetCookieStoreIOSClient() {
return g_client;
}
CookieStoreIOSClient::CookieStoreIOSClient() {}
CookieStoreIOSClient::~CookieStoreIOSClient() {}
scoped_refptr<base::SequencedTaskRunner> CookieStoreIOSClient::GetTaskRunner()
const {
return scoped_refptr<base::SequencedTaskRunner>();
}
} // namespace net