// 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. #ifndef THIRD_PARTY_BLINK_RENDERER_CORE_HTML_PARSER_SPECIAL_SEQUENCES_TRACKER_H_ #define THIRD_PARTY_BLINK_RENDERER_CORE_HTML_PARSER_SPECIAL_SEQUENCES_TRACKER_H_ #include <limits> #include "third_party/blink/renderer/core/core_export.h" #include "third_party/blink/renderer/platform/wtf/wtf_size_t.h" namespace WTF { class String; } namespace blink { // Used to track sequences that can not be handled the // BackgroundHTMLTokenProducer. class CORE_EXPORT SpecialSequencesTracker { … }; } // namespace blink #endif // THIRD_PARTY_BLINK_RENDERER_CORE_HTML_PARSER_SPECIAL_SEQUENCES_TRACKER_H_