chromium/net/cookies/static_cookie_policy.h

// Copyright 2011 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_STATIC_COOKIE_POLICY_H_
#define NET_COOKIES_STATIC_COOKIE_POLICY_H_

#include "net/base/net_export.h"

class GURL;

namespace net {

class SiteForCookies;

// The StaticCookiePolicy class implements a static cookie policy that supports
// three modes: allow all, deny all, or block third-party cookies.
class NET_EXPORT StaticCookiePolicy {};

}  // namespace net

#endif  // NET_COOKIES_STATIC_COOKIE_POLICY_H_