chromium/third_party/blink/renderer/core/css/cssom/css_url_image_value.cc

// Copyright 2016 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/cssom/css_url_image_value.h"

#include "third_party/blink/renderer/core/css/css_image_value.h"
#include "third_party/blink/renderer/core/loader/resource/image_resource_content.h"
#include "third_party/blink/renderer/core/style/style_image.h"

namespace blink {

const String& CSSURLImageValue::url() const {}

std::optional<gfx::Size> CSSURLImageValue::IntrinsicSize() const {}

ResourceStatus CSSURLImageValue::Status() const {}

scoped_refptr<Image> CSSURLImageValue::GetSourceImageForCanvas(
    FlushReason,
    SourceImageStatus*,
    const gfx::SizeF&,
    const AlphaDisposition alpha_disposition) {}

scoped_refptr<Image> CSSURLImageValue::GetImage() const {}

bool CSSURLImageValue::IsAccelerated() const {}

const CSSValue* CSSURLImageValue::ToCSSValue() const {}

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

}  // namespace blink