| Index: components/favicon_base/favicon_types.h
|
| diff --git a/components/favicon_base/favicon_types.h b/components/favicon_base/favicon_types.h
|
| index 068fd17e61dca5aa6af9f9f4e3b4ba301dd4331f..6a399cefe0ebb4e03e6000ea79e6480a60862805 100644
|
| --- a/components/favicon_base/favicon_types.h
|
| +++ b/components/favicon_base/favicon_types.h
|
| @@ -7,8 +7,9 @@
|
|
|
| #include <stdint.h>
|
|
|
| +#include <memory>
|
| +
|
| #include "base/memory/ref_counted_memory.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "ui/gfx/geometry/size.h"
|
| #include "ui/gfx/image/image.h"
|
| #include "url/gurl.h"
|
| @@ -95,7 +96,7 @@ struct LargeIconResult {
|
|
|
| // The fallback icon style if a sufficiently large icon isn't available. This
|
| // uses the dominant color of a smaller icon as the background if available.
|
| - scoped_ptr<FallbackIconStyle> fallback_icon_style;
|
| + std::unique_ptr<FallbackIconStyle> fallback_icon_style;
|
| };
|
|
|
| } // namespace favicon_base
|
|
|