| Index: components/favicon_base/favicon_types.cc
|
| diff --git a/components/favicon_base/favicon_types.cc b/components/favicon_base/favicon_types.cc
|
| index 8699c4387f4e85d79ee908b8dff3edccc52d268c..47b6b2a6e8cd6e8935e5621faec52d89745f9d60 100644
|
| --- a/components/favicon_base/favicon_types.cc
|
| +++ b/components/favicon_base/favicon_types.cc
|
| @@ -33,8 +33,9 @@ FaviconRawBitmapResult::~FaviconRawBitmapResult() {}
|
| LargeIconResult::LargeIconResult(const FaviconRawBitmapResult& bitmap_in)
|
| : bitmap(bitmap_in) {}
|
|
|
| -LargeIconResult::LargeIconResult(FallbackIconStyle* fallback_icon_style_in)
|
| - : fallback_icon_style(fallback_icon_style_in) {}
|
| +LargeIconResult::LargeIconResult(
|
| + std::unique_ptr<FallbackIconStyle> fallback_icon_style_in)
|
| + : fallback_icon_style(std::move(fallback_icon_style_in)) {}
|
|
|
| LargeIconResult::~LargeIconResult() {}
|
|
|
|
|