chromium/chrome/browser/shortcuts/image_test_utils.cc

// 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 "chrome/browser/shortcuts/image_test_utils.h"

#include <string>

#include "base/base_paths.h"
#include "base/check_is_test.h"
#include "base/files/file_path.h"
#include "base/files/file_util.h"
#include "base/path_service.h"
#include "base/strings/strcat.h"
#include "base/threading/thread_restrictions.h"
#include "base/types/expected.h"
#include "third_party/skia/include/core/SkBitmap.h"
#include "ui/gfx/codec/png_codec.h"

namespace shortcuts {

base::expected<SkBitmap, std::string> LoadImageFromTestFile(
    const base::FilePath& relative_path_from_chrome_data) {}

}  // namespace shortcuts