| Index: chrome/browser/ui/webui/options/import_data_handler.h
|
| diff --git a/chrome/browser/ui/webui/options/import_data_handler.h b/chrome/browser/ui/webui/options/import_data_handler.h
|
| index 99c990208e1463642fedf1f7ba86a054e73d6ce0..32bea2b08f3fbff9b502d511881ac860b04846f2 100644
|
| --- a/chrome/browser/ui/webui/options/import_data_handler.h
|
| +++ b/chrome/browser/ui/webui/options/import_data_handler.h
|
| @@ -7,9 +7,10 @@
|
|
|
| #include <stdint.h>
|
|
|
| +#include <memory>
|
| +
|
| #include "base/compiler_specific.h"
|
| #include "base/macros.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "chrome/browser/importer/importer_progress_observer.h"
|
| #include "chrome/browser/ui/webui/options/options_ui.h"
|
| #include "chrome/common/importer/importer_data_types.h"
|
| @@ -56,7 +57,7 @@ class ImportDataHandler : public OptionsPageUIHandler,
|
| // Opens a file selection dialog to choose the bookmarks HTML file.
|
| void HandleChooseBookmarksFile(const base::ListValue* args);
|
|
|
| - scoped_ptr<ImporterList> importer_list_;
|
| + std::unique_ptr<ImporterList> importer_list_;
|
|
|
| // If non-null it means importing is in progress. ImporterHost takes care
|
| // of deleting itself when import is complete.
|
|
|