| Index: tools/gn/import_manager.cc
|
| diff --git a/tools/gn/import_manager.cc b/tools/gn/import_manager.cc
|
| index 2d39846d981b89d99efa50eb8989cfd14b17f676..83cc09020cdafb020462b8ece9a6ff3e9f6330dd 100644
|
| --- a/tools/gn/import_manager.cc
|
| +++ b/tools/gn/import_manager.cc
|
| @@ -4,7 +4,8 @@
|
|
|
| #include "tools/gn/import_manager.h"
|
|
|
| -#include "base/memory/scoped_ptr.h"
|
| +#include <memory>
|
| +
|
| #include "base/stl_util.h"
|
| #include "tools/gn/parse_tree.h"
|
| #include "tools/gn/scheduler.h"
|
| @@ -22,7 +23,7 @@ Scope* UncachedImport(const Settings* settings,
|
| if (!node)
|
| return nullptr;
|
|
|
| - scoped_ptr<Scope> scope(new Scope(settings->base_config()));
|
| + std::unique_ptr<Scope> scope(new Scope(settings->base_config()));
|
| scope->set_source_dir(file.GetDir());
|
|
|
| // Don't allow ScopePerFileProvider to provide target-related variables.
|
|
|