// 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/style_scope_data.h" #include "third_party/blink/renderer/core/css/style_scope.h" namespace blink { void StyleScopeData::AddTriggeredImplicitScope(const StyleScope& style_scope) { … } void StyleScopeData::RemoveTriggeredImplicitScope( const StyleScope& style_scope) { … } bool StyleScopeData::TriggersScope(const StyleScope& style_scope) const { … } void StyleScopeData::Trace(Visitor* visitor) const { … } } // namespace blink