chromium/content/browser/cookie_deprecation_label/cookie_deprecation_label_manager_impl.h

// Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef CONTENT_BROWSER_COOKIE_DEPRECATION_LABEL_COOKIE_DEPRECATION_LABEL_MANAGER_IMPL_H_
#define CONTENT_BROWSER_COOKIE_DEPRECATION_LABEL_COOKIE_DEPRECATION_LABEL_MANAGER_IMPL_H_

#include <optional>
#include <string>

#include "base/memory/raw_ref.h"
#include "content/common/content_export.h"
#include "content/public/browser/cookie_deprecation_label_manager.h"

namespace url {
class Origin;
}  // namespace url

namespace content {

class BrowserContext;

// Maintaining a per-partition label to be used for 3PCD experimentation.
class CONTENT_EXPORT CookieDeprecationLabelManagerImpl
    : public CookieDeprecationLabelManager {};

}  // namespace content

#endif  // CONTENT_BROWSER_COOKIE_DEPRECATION_LABEL_COOKIE_DEPRECATION_LABEL_MANAGER_IMPL_H_