| Index: chrome/browser/chromeos/policy/restore_on_startup_browsertest_chromeos.cc
|
| diff --git a/chrome/browser/chromeos/policy/restore_on_startup_browsertest_chromeos.cc b/chrome/browser/chromeos/policy/restore_on_startup_browsertest_chromeos.cc
|
| index 570427db0359583cc6bbea552b095dc7520f8bee..8d7cecc40055d06b2423f384a20fca072e29225d 100644
|
| --- a/chrome/browser/chromeos/policy/restore_on_startup_browsertest_chromeos.cc
|
| +++ b/chrome/browser/chromeos/policy/restore_on_startup_browsertest_chromeos.cc
|
| @@ -2,6 +2,8 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| +#include <utility>
|
| +
|
| #include "base/command_line.h"
|
| #include "base/macros.h"
|
| #include "base/memory/scoped_ptr.h"
|
| @@ -60,7 +62,7 @@ void RestoreOnStartupTestChromeOS::GetMandatoryPoliciesValue(
|
| scoped_ptr<base::ListValue> urls(new base::ListValue);
|
| urls->AppendString(kStartUpURL1);
|
| urls->AppendString(kStartUpURL2);
|
| - policy->Set(key::kRestoreOnStartupURLs, urls.Pass());
|
| + policy->Set(key::kRestoreOnStartupURLs, std::move(urls));
|
| }
|
|
|
| void RestoreOnStartupTestChromeOS::LogInAndVerifyStartUpURLs() {
|
|
|