Index: base/base_paths_win.cc |
diff --git a/base/base_paths_win.cc b/base/base_paths_win.cc |
index 7102f7487533e696240352f62380ed7b6029422f..86ca4502f53b95e0c3dd7737b01ad22a6d0d28de 100644 |
--- a/base/base_paths_win.cc |
+++ b/base/base_paths_win.cc |
@@ -70,7 +70,7 @@ bool PathProviderWin(int key, FilePath* result) { |
#if !defined(_WIN64) |
if (base::win::OSInfo::GetInstance()->wow64_status() == |
base::win::OSInfo::WOW64_ENABLED) { |
- scoped_ptr<base::Environment> env(base::Environment::Create()); |
+ std::unique_ptr<base::Environment> env(base::Environment::Create()); |
std::string programfiles_w6432; |
// 32-bit process running in WOW64 sets ProgramW6432 environment |
// variable. See |