chromium/third_party/blink/renderer/core/style/style_inherited_variables.cc

// Copyright 2015 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/style/style_inherited_variables.h"

#include "base/memory/values_equivalent.h"

#include <iostream>

namespace blink {

bool StyleInheritedVariables::HasEquivalentRoots(
    const StyleInheritedVariables& other) const {}

bool StyleInheritedVariables::operator==(
    const StyleInheritedVariables& other) const {}

StyleInheritedVariables::StyleInheritedVariables() :{}

StyleInheritedVariables::StyleInheritedVariables(
    StyleInheritedVariables& other) {}

StyleVariables::OptionalData StyleInheritedVariables::GetData(
    const AtomicString& name) const {}

StyleVariables::OptionalValue StyleInheritedVariables::GetValue(
    const AtomicString& name) const {}

void StyleInheritedVariables::CollectNames(HashSet<AtomicString>& names) const {}

std::ostream& operator<<(std::ostream& stream,
                         const StyleInheritedVariables& variables) {}

}  // namespace blink