| Index: chrome/browser/extensions/api/identity/identity_apitest.cc
|
| diff --git a/chrome/browser/extensions/api/identity/identity_apitest.cc b/chrome/browser/extensions/api/identity/identity_apitest.cc
|
| index da7aaf1797e47ab49eaa14d674d1ce04166d34cd..33a298064a57a046db6d9635cb62054bec29c285 100644
|
| --- a/chrome/browser/extensions/api/identity/identity_apitest.cc
|
| +++ b/chrome/browser/extensions/api/identity/identity_apitest.cc
|
| @@ -1658,16 +1658,16 @@ class GetAuthTokenFunctionPublicSessionTest : public GetAuthTokenFunctionTest {
|
|
|
| scoped_refptr<Extension> CreateTestExtension(const std::string& id) {
|
| return ExtensionBuilder()
|
| - .SetManifest(std::move(
|
| + .SetManifest(
|
| DictionaryBuilder()
|
| .Set("name", "Test")
|
| .Set("version", "1.0")
|
| .Set("oauth2",
|
| - std::move(
|
| - DictionaryBuilder()
|
| - .Set("client_id", "clientId")
|
| - .Set("scopes",
|
| - std::move(ListBuilder().Append("scope1")))))))
|
| + DictionaryBuilder()
|
| + .Set("client_id", "clientId")
|
| + .Set("scopes", ListBuilder().Append("scope1").Build())
|
| + .Build())
|
| + .Build())
|
| .SetLocation(Manifest::UNPACKED)
|
| .SetID(id)
|
| .Build();
|
|
|