chromium/third_party/blink/renderer/core/css/parser/at_rule_font_palette_values_descriptor_parser.cc

// Copyright 2022 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/parser/at_rule_descriptor_parser.h"

#include "third_party/blink/renderer/core/css/css_string_value.h"
#include "third_party/blink/renderer/core/css/css_value.h"
#include "third_party/blink/renderer/core/css/css_value_pair.h"
#include "third_party/blink/renderer/core/css/parser/at_rule_descriptors.h"
#include "third_party/blink/renderer/core/css/parser/css_parser_context.h"
#include "third_party/blink/renderer/core/css/parser/css_parser_token_range.h"
#include "third_party/blink/renderer/core/css/properties/css_parsing_utils.h"

namespace blink {

namespace {

CSSValue* ConsumeFontFamily(CSSParserTokenStream& stream,
                            const CSSParserContext& context) {}

CSSValue* ConsumeBasePalette(CSSParserTokenStream& stream,
                             const CSSParserContext& context) {}

CSSValue* ConsumeColorOverride(CSSParserTokenStream& stream,
                               const CSSParserContext& context) {}

}  // namespace

CSSValue* AtRuleDescriptorParser::ParseAtFontPaletteValuesDescriptor(
    AtRuleDescriptorID id,
    CSSParserTokenStream& stream,
    const CSSParserContext& context) {}

}  // namespace blink