cygprofile: increase timeouts to allow showing web contents
[chromium-blink-merge.git] / ios / net / cookies / cookie_store_ios_client.mm
blobc8cbd14c93ac3a83d364ee2c0fc4938c10019f30
1 // Copyright 2014 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.
5 #include "ios/net/cookies/cookie_store_ios_client.h"
7 namespace {
8 // The CookieStoreIOSClient.
9 net::CookieStoreIOSClient* g_client;
10 }  // namespace
12 namespace net {
14 void SetCookieStoreIOSClient(CookieStoreIOSClient* client) {
15   g_client = client;
18 CookieStoreIOSClient* GetCookieStoreIOSClient() {
19   return g_client;
22 CookieStoreIOSClient::CookieStoreIOSClient() {}
24 CookieStoreIOSClient::~CookieStoreIOSClient() {}
26 void CookieStoreIOSClient::WillChangeCookieStorage() const {}
28 void CookieStoreIOSClient::DidChangeCookieStorage() const {}
30 scoped_refptr<base::SequencedTaskRunner>
31 CookieStoreIOSClient::GetTaskRunner() const {
32   return scoped_refptr<base::SequencedTaskRunner>();
35 }  // namespace net