// Copyright 2019 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef THIRD_PARTY_BLINK_RENDERER_CORE_FRAGMENT_DIRECTIVE_TEXT_FRAGMENT_SELECTOR_H_ #define THIRD_PARTY_BLINK_RENDERER_CORE_FRAGMENT_DIRECTIVE_TEXT_FRAGMENT_SELECTOR_H_ #include "third_party/blink/renderer/core/core_export.h" #include "third_party/blink/renderer/platform/wtf/text/wtf_string.h" namespace blink { // TextFragmentSelector represents a single text=... selector of a // TextFragmentAnchor, parsed into its components. // TODO(bokan): This should be renamed to TextSelectorParams: // https://docs.google.com/document/d/1yE75LfQn9GsooOyWWH---obsV46gT4JAUr9uWIYXp28/edit?usp=sharing. class CORE_EXPORT TextFragmentSelector final { … }; } // namespace blink #endif // THIRD_PARTY_BLINK_RENDERER_CORE_FRAGMENT_DIRECTIVE_TEXT_FRAGMENT_SELECTOR_H_