53 lines
1.7 KiB
C++
53 lines
1.7 KiB
C++
|
|
// Copyright 2012 The Chromium Authors
|
||
|
|
// Use of this source code is governed by a BSD-style license that can be
|
||
|
|
// found in the LICENSE file.
|
||
|
|
|
||
|
|
#include "net/cookies/cookie_store.h"
|
||
|
|
|
||
|
|
#include <utility>
|
||
|
|
|
||
|
|
#include "base/functional/bind.h"
|
||
|
|
#include "base/functional/callback.h"
|
||
|
|
|
||
|
|
namespace net {
|
||
|
|
|
||
|
|
CookieStore::CookieStore() = default;
|
||
|
|
|
||
|
|
CookieStore::~CookieStore() = default;
|
||
|
|
|
||
|
|
// Default implementation which returns a default vector of UNKNOWN
|
||
|
|
// CookieAccessSemantics.
|
||
|
|
void CookieStore::GetAllCookiesWithAccessSemanticsAsync(
|
||
|
|
GetAllCookiesWithAccessSemanticsCallback callback) {
|
||
|
|
GetAllCookiesCallback adapted_callback = base::BindOnce(
|
||
|
|
[](CookieStore::GetAllCookiesWithAccessSemanticsCallback
|
||
|
|
original_callback,
|
||
|
|
const CookieList& cookies) {
|
||
|
|
std::vector<CookieAccessSemantics> default_access_semantics_list;
|
||
|
|
default_access_semantics_list.assign(cookies.size(),
|
||
|
|
CookieAccessSemantics::UNKNOWN);
|
||
|
|
std::move(original_callback)
|
||
|
|
.Run(cookies, default_access_semantics_list);
|
||
|
|
},
|
||
|
|
std::move(callback));
|
||
|
|
GetAllCookiesAsync(std::move(adapted_callback));
|
||
|
|
}
|
||
|
|
|
||
|
|
void CookieStore::DeleteAllAsync(DeleteCallback callback) {
|
||
|
|
DeleteAllCreatedInTimeRangeAsync(CookieDeletionInfo::TimeRange(),
|
||
|
|
std::move(callback));
|
||
|
|
}
|
||
|
|
|
||
|
|
void CookieStore::SetCookieAccessDelegate(
|
||
|
|
std::unique_ptr<CookieAccessDelegate> delegate) {
|
||
|
|
cookie_access_delegate_ = std::move(delegate);
|
||
|
|
}
|
||
|
|
|
||
|
|
absl::optional<bool> CookieStore::SiteHasCookieInOtherPartition(
|
||
|
|
const net::SchemefulSite& site,
|
||
|
|
const absl::optional<CookiePartitionKey>& partition_key) const {
|
||
|
|
return absl::nullopt;
|
||
|
|
}
|
||
|
|
|
||
|
|
} // namespace net
|