// Copyright 2020 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef NET_COOKIES_COOKIE_ACCESS_RESULT_H_ #define NET_COOKIES_COOKIE_ACCESS_RESULT_H_ #include <ostream> #include "net/base/net_export.h" #include "net/cookies/cookie_constants.h" #include "net/cookies/cookie_inclusion_status.h" namespace net { struct NET_EXPORT CookieAccessResult { … }; // Provided to allow gtest to create more helpful error messages, instead of // printing hex. inline void PrintTo(const CookieAccessResult& car, std::ostream* os) { … } } // namespace net #endif // NET_COOKIES_COOKIE_ACCESS_RESULT_H_