| Index: chrome/browser/ui/webui/print_preview/sticky_settings.cc
|
| diff --git a/chrome/browser/ui/webui/print_preview/sticky_settings.cc b/chrome/browser/ui/webui/print_preview/sticky_settings.cc
|
| index d1c9d983e87a7825aa85df79e6dba8827e913b94..adc121b3c4807bb77216fa3964fef4a5bcb6eede 100644
|
| --- a/chrome/browser/ui/webui/print_preview/sticky_settings.cc
|
| +++ b/chrome/browser/ui/webui/print_preview/sticky_settings.cc
|
| @@ -34,7 +34,7 @@ void StickySettings::StoreSavePath(const base::FilePath& path) {
|
| void StickySettings::SaveInPrefs(PrefService* prefs) {
|
| DCHECK(prefs);
|
| if (prefs) {
|
| - scoped_ptr<base::DictionaryValue> value(new base::DictionaryValue);
|
| + std::unique_ptr<base::DictionaryValue> value(new base::DictionaryValue);
|
| if (save_path_.get())
|
| value->SetString(printing::kSettingSavePath, save_path_->value());
|
| if (printer_app_state_.get())
|
|
|