| Index: chrome/browser/extensions/active_script_controller_unittest.cc
|
| diff --git a/chrome/browser/extensions/active_script_controller_unittest.cc b/chrome/browser/extensions/active_script_controller_unittest.cc
|
| index a05f521fc8d255a8c896960b1eef0c5938ca15da..b436ce4483eecd4fcefed24849153884ddd245f3 100644
|
| --- a/chrome/browser/extensions/active_script_controller_unittest.cc
|
| +++ b/chrome/browser/extensions/active_script_controller_unittest.cc
|
| @@ -107,14 +107,15 @@ const Extension* ActiveScriptControllerUnitTest::AddExtension() {
|
| const std::string kId = crx_file::id_util::GenerateId("all_hosts_extension");
|
| extension_ =
|
| ExtensionBuilder()
|
| - .SetManifest(std::move(
|
| + .SetManifest(
|
| DictionaryBuilder()
|
| .Set("name", "all_hosts_extension")
|
| .Set("description", "an extension")
|
| .Set("manifest_version", 2)
|
| .Set("version", "1.0.0")
|
| .Set("permissions",
|
| - std::move(ListBuilder().Append(kAllHostsPermission)))))
|
| + ListBuilder().Append(kAllHostsPermission).Build())
|
| + .Build())
|
| .SetLocation(Manifest::INTERNAL)
|
| .SetID(kId)
|
| .Build();
|
|
|