| Index: components/bookmarks/browser/bookmark_utils.h
|
| diff --git a/components/bookmarks/browser/bookmark_utils.h b/components/bookmarks/browser/bookmark_utils.h
|
| index 0a3a3730f9d6e9be43b898a4a6281e34e97f327d..0384cfc11ff89bbcdd3e89f65dcc75297e845eb7 100644
|
| --- a/components/bookmarks/browser/bookmark_utils.h
|
| +++ b/components/bookmarks/browser/bookmark_utils.h
|
| @@ -36,9 +36,9 @@ struct QueryFields {
|
| QueryFields();
|
| ~QueryFields();
|
|
|
| - scoped_ptr<base::string16> word_phrase_query;
|
| - scoped_ptr<base::string16> url;
|
| - scoped_ptr<base::string16> title;
|
| + std::unique_ptr<base::string16> word_phrase_query;
|
| + std::unique_ptr<base::string16> url;
|
| + std::unique_ptr<base::string16> title;
|
| };
|
|
|
| // Clones bookmark node, adding newly created nodes to |parent| starting at
|
|
|