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

#include "components/shared_highlighting/core/common/fragment_directives_constants.h"
#include "third_party/blink/renderer/platform/weborigin/kurl.h"

namespace blink {
namespace {
// TODO(crbug/1253707) Reject the directive string if it uses anything not
// allowed by the spec
bool ParseCssSelectorDirective(const String& directive_string, String& value) {}

}  // namespace

CssSelectorDirective* CssSelectorDirective::TryParse(
    const String& directive_string) {}

CssSelectorDirective::CssSelectorDirective(const String& value)
    :{}

String CssSelectorDirective::ToStringImpl() const {}

}  // namespace blink