chromium/content/browser/interest_group/debuggable_auction_worklet_tracker.cc

// Copyright 2021 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/interest_group/debuggable_auction_worklet_tracker.h"

#include "base/logging.h"
#include "base/no_destructor.h"
#include "base/observer_list.h"

namespace content {

DebuggableAuctionWorkletTracker*
DebuggableAuctionWorkletTracker::GetInstance() {}

std::vector<DebuggableAuctionWorklet*>
DebuggableAuctionWorkletTracker::GetAll() {}

void DebuggableAuctionWorkletTracker::AddObserver(Observer* observer) {}

void DebuggableAuctionWorkletTracker::RemoveObserver(Observer* observer) {}

void DebuggableAuctionWorkletTracker::NotifyCreated(
    DebuggableAuctionWorklet* worklet,
    bool& should_pause_on_start) {}

void DebuggableAuctionWorkletTracker::NotifyDestroyed(
    DebuggableAuctionWorklet* worklet) {}

DebuggableAuctionWorkletTracker::DebuggableAuctionWorkletTracker() = default;
DebuggableAuctionWorkletTracker::~DebuggableAuctionWorkletTracker() = default;

}  // namespace content