chromium/third_party/blink/renderer/core/css/style_image_cache.cc

// 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.

#include "third_party/blink/renderer/core/css/style_image_cache.h"

#include "third_party/blink/renderer/core/loader/resource/image_resource_content.h"
#include "third_party/blink/renderer/platform/loader/fetch/fetch_parameters.h"
#include "third_party/blink/renderer/platform/loader/fetch/memory_cache.h"

namespace blink {

namespace {

bool CanReuseImageContent(const ImageResourceContent& image_content) {}

}  // namespace

ImageResourceContent* StyleImageCache::CacheImageContent(
    ResourceFetcher* fetcher,
    FetchParameters& params) {}

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

}  // namespace blink