chromium/third_party/blink/renderer/core/css/out_of_flow_data.cc

// 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.

#include "third_party/blink/renderer/core/css/out_of_flow_data.h"

#include "third_party/blink/renderer/core/css/css_property_value_set.h"
#include "third_party/blink/renderer/core/layout/layout_object.h"

namespace blink {

void OutOfFlowData::Trace(Visitor* visitor) const {}

bool OutOfFlowData::SetPendingSuccessfulPositionFallback(
    const PositionTryFallbacks* fallbacks,
    const CSSPropertyValueSet* try_set,
    const TryTacticList& try_tactics,
    std::optional<size_t> index) {}

bool OutOfFlowData::ApplyPendingSuccessfulPositionFallback(
    LayoutObject* layout_object) {}

void OutOfFlowData::ClearLastSuccessfulPositionFallback() {}

bool OutOfFlowData::InvalidatePositionTryNames(
    const HashSet<AtomicString>& try_names) {}

}  // namespace blink