#include "components/favicon_base/favicon_types.h"
#include "components/favicon_base/fallback_icon_style.h"
namespace favicon_base {
FaviconImageResult::FaviconImageResult() { … }
FaviconImageResult::~FaviconImageResult() { … }
FaviconRawBitmapResult::FaviconRawBitmapResult()
: … { … }
FaviconRawBitmapResult::FaviconRawBitmapResult(
const FaviconRawBitmapResult& other) = default;
FaviconRawBitmapResult::~FaviconRawBitmapResult() { … }
LargeIconResult::LargeIconResult(const FaviconRawBitmapResult& bitmap_in)
: … { … }
LargeIconResult::LargeIconResult(FallbackIconStyle* fallback_icon_style_in)
: … { … }
LargeIconResult::~LargeIconResult() { … }
LargeIconResult::LargeIconResult(LargeIconResult&& result) = default;
LargeIconImageResult::LargeIconImageResult(const gfx::Image& image_in,
const GURL& icon_url_in)
: … { … }
LargeIconImageResult::LargeIconImageResult(
FallbackIconStyle* fallback_icon_style_in)
: … { … }
LargeIconImageResult::~LargeIconImageResult() { … }
}