chromium/content/test/test_content_client.cc

// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "content/test/test_content_client.h"

#include <string_view>

#include "ui/base/resource/resource_bundle.h"

namespace content {

TestContentClient::TestContentClient() = default;

TestContentClient::~TestContentClient() = default;

std::string_view TestContentClient::GetDataResource(
    int resource_id,
    ui::ResourceScaleFactor scale_factor) {}

base::RefCountedMemory* TestContentClient::GetDataResourceBytes(
    int resource_id) {}

std::string TestContentClient::GetDataResourceString(int resource_id) {}

}  // namespace content