chromium/content/browser/attribution_reporting/attribution_manager.cc

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

#include "content/browser/attribution_reporting/attribution_manager.h"

#include "base/check.h"
#include "content/browser/attribution_reporting/attribution_os_level_manager.h"
#include "content/browser/storage_partition_impl.h"
#include "content/public/browser/browser_context.h"
#include "content/public/browser/content_browser_client.h"
#include "content/public/browser/storage_partition.h"
#include "content/public/browser/web_contents.h"
#include "content/public/common/content_client.h"

namespace content {

// static
AttributionManager* AttributionManager::FromWebContents(
    WebContents* web_contents) {}

// static
AttributionManager* AttributionManager::FromBrowserContext(
    BrowserContext* browser_context) {}

// static
network::mojom::AttributionSupport AttributionManager::GetAttributionSupport(
    bool client_os_disabled) {}

}  // namespace content