Index: components/error_page/common/error_page_params.h |
diff --git a/components/error_page/common/error_page_params.h b/components/error_page/common/error_page_params.h |
index c0b2203b9011a07ab8b40a09cf3a1ba183349ba8..6aa9e1745c9bd4bdd6cd7520733abfcd52ca9972 100644 |
--- a/components/error_page/common/error_page_params.h |
+++ b/components/error_page/common/error_page_params.h |
@@ -5,9 +5,9 @@ |
#ifndef COMPONENTS_NET_ERROR_COMMON_ERROR_PAGE_PARAMS_H_ |
#define COMPONENTS_NET_ERROR_COMMON_ERROR_PAGE_PARAMS_H_ |
+#include <memory> |
#include <string> |
-#include "base/memory/scoped_ptr.h" |
#include "url/gurl.h" |
namespace base { |
@@ -29,7 +29,7 @@ struct ErrorPageParams { |
// contains a "header" entry. A "body" entry may optionally be specified. |
// JSTemplate evaluation will be applied when added to the DOM. If NULL, the |
// default suggestions will be used. |
- scoped_ptr<base::ListValue> override_suggestions; |
+ std::unique_ptr<base::ListValue> override_suggestions; |
// Prefix to prepend to search terms. Search box is only shown if this is |
// a valid url. The search terms will be appended to the end of this URL to |