1 // Copyright 2019 The Chromium Authors 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 5 #include "net/cookies/cookie_access_delegate.h" 6 7 #include <set> 8 9 #include "base/functional/callback.h" 10 #include "net/base/schemeful_site.h" 11 #include "net/cookies/cookie_partition_key.h" 12 #include "net/first_party_sets/first_party_set_entry.h" 13 #include "third_party/abseil-cpp/absl/types/optional.h" 14 15 namespace net { 16 17 CookieAccessDelegate::CookieAccessDelegate() = default; 18 19 CookieAccessDelegate::~CookieAccessDelegate() = default; 20 ShouldTreatUrlAsTrustworthy(const GURL & url) const21bool CookieAccessDelegate::ShouldTreatUrlAsTrustworthy(const GURL& url) const { 22 return false; 23 } 24 25 } // namespace net 26