| Index: chrome/installer/util/shell_util.cc
|
| diff --git a/chrome/installer/util/shell_util.cc b/chrome/installer/util/shell_util.cc
|
| index 6051eba27ab6845612c5c676faf0c3c67d209d0e..c0e53b0b99ab62fd2716d6928fbfc4c011f65475 100644
|
| --- a/chrome/installer/util/shell_util.cc
|
| +++ b/chrome/installer/util/shell_util.cc
|
| @@ -15,6 +15,7 @@
|
|
|
| #include <limits>
|
| #include <string>
|
| +#include <utility>
|
|
|
| #include "base/bind.h"
|
| #include "base/command_line.h"
|
| @@ -274,7 +275,7 @@ ScopedVector<RegistryEntry> GetChromeDelegateExecuteEntries(
|
| sub_path, ShellUtil::kRegDelegateExecute, app_info.delegate_clsid));
|
| }
|
|
|
| - return entries.Pass();
|
| + return std::move(entries);
|
| }
|
|
|
| // Gets the registry entries to register an application in the Windows registry.
|
|
|