// Copyright 2024 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/dom/text_diff_range.h" #include "third_party/blink/renderer/platform/wtf/text/string_view.h" #include "third_party/blink/renderer/platform/wtf/text/wtf_string.h" namespace blink { #if EXPENSIVE_DCHECKS_ARE_ON() void TextDiffRange::CheckValid(const String& old_text, const String& new_text) const { … } #endif // EXPENSIVE_DCHECKS_ARE_ON() } // namespace blink