chromium/components/performance_manager/freezing/frozen_data.cc

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

#include "components/performance_manager/freezing/frozen_data.h"

#include "base/check_op.h"

namespace performance_manager {

bool FrozenData::IsFrozen() const {}

// Returns the state as an equivalent LifecycleState.
performance_manager::mojom::LifecycleState FrozenData::AsLifecycleState()
    const {}

bool FrozenData::ChangeFrameCounts(int32_t current_frame_delta,
                                   int32_t frozen_frame_delta) {}

base::Value::Dict FrozenData::Describe() {}

}  // namespace performance_manager