chromium/components/favicon/core/large_icon_worker.h

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

#ifndef COMPONENTS_FAVICON_CORE_LARGE_ICON_WORKER_H_
#define COMPONENTS_FAVICON_CORE_LARGE_ICON_WORKER_H_

#include <memory>

#include "base/memory/raw_ptr.h"
#include "base/memory/ref_counted.h"
#include "base/task/cancelable_task_tracker.h"
#include "components/favicon/core/large_icon_service.h"
#include "components/favicon_base/favicon_callback.h"
#include "components/favicon_base/favicon_types.h"
#include "third_party/skia/include/core/SkBitmap.h"

namespace favicon {

class FaviconService;

// Processes the png data returned from the FaviconService as part of a
// LargeIconService request (resizing and decoding from PNG format).
class LargeIconWorker : public base::RefCountedThreadSafe<LargeIconWorker> {};

}  // namespace favicon

#endif  // COMPONENTS_FAVICON_CORE_LARGE_ICON_WORKER_H_