chromium/third_party/blink/renderer/platform/fonts/font_fallback_map.cc

// Copyright 2020 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/platform/fonts/font_fallback_map.h"

#include "third_party/blink/renderer/platform/fonts/font_selector.h"

namespace blink {

void FontFallbackMap::Trace(Visitor* visitor) const {}

FontFallbackList* FontFallbackMap::Get(
    const FontDescription& font_description) {}

void FontFallbackMap::InvalidateAll() {}

template <typename Predicate>
void FontFallbackMap::InvalidateInternal(Predicate predicate) {}

void FontFallbackMap::FontsNeedUpdate(FontSelector*,
                                      FontInvalidationReason reason) {}

void FontFallbackMap::FontCacheInvalidated() {}

}  // namespace blink