chromium/third_party/blink/renderer/core/css/style_recalc_change.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 "third_party/blink/renderer/core/css/style_recalc_change.h"

#include "third_party/blink/renderer/core/dom/element.h"
#include "third_party/blink/renderer/core/dom/node_computed_style.h"
#include "third_party/blink/renderer/core/dom/pseudo_element.h"
#include "third_party/blink/renderer/platform/wtf/text/string_builder.h"

namespace blink {

bool StyleRecalcChange::TraverseChildren(const Element& element) const {}

bool StyleRecalcChange::TraversePseudoElements(const Element& element) const {}

bool StyleRecalcChange::TraverseChild(const Node& node) const {}

bool StyleRecalcChange::RecalcContainerQueryDependent(const Node& node) const {}

bool StyleRecalcChange::ShouldRecalcStyleFor(const Node& node) const {}

bool StyleRecalcChange::ShouldUpdatePseudoElement(
    const PseudoElement& pseudo_element) const {}

String StyleRecalcChange::ToString() const {}

StyleRecalcChange::Flags StyleRecalcChange::FlagsForChildren(
    const Element& element) const {}

bool StyleRecalcChange::IndependentInherit(
    const ComputedStyle& old_style) const {}

}  // namespace blink