| Index: extensions/shell/browser/api/identity/identity_api_unittest.cc
|
| diff --git a/extensions/shell/browser/api/identity/identity_api_unittest.cc b/extensions/shell/browser/api/identity/identity_api_unittest.cc
|
| index bf9248ccd5d2bf3b5a3d11b768331c11d0ed43ba..0af6e4b13bbb46a23cfce6bb9bf41aae453fe5a7 100644
|
| --- a/extensions/shell/browser/api/identity/identity_api_unittest.cc
|
| +++ b/extensions/shell/browser/api/identity/identity_api_unittest.cc
|
| @@ -65,18 +65,21 @@ class IdentityApiTest : public ApiUnitTest {
|
| // Create an extension with OAuth2 scopes.
|
| set_extension(
|
| ExtensionBuilder()
|
| - .SetManifest(std::move(
|
| + .SetManifest(
|
| DictionaryBuilder()
|
| .Set("name", "Test")
|
| .Set("version", "1.0")
|
| .Set("oauth2",
|
| - std::move(DictionaryBuilder()
|
| - .Set("client_id",
|
| - "123456.apps.googleusercontent.com")
|
| - .Set("scopes",
|
| - std::move(ListBuilder().Append(
|
| - "https://www.googleapis.com/"
|
| - "auth/drive")))))))
|
| + DictionaryBuilder()
|
| + .Set("client_id",
|
| + "123456.apps.googleusercontent.com")
|
| + .Set("scopes",
|
| + ListBuilder()
|
| + .Append("https://www.googleapis.com/"
|
| + "auth/drive")
|
| + .Build())
|
| + .Build())
|
| + .Build())
|
| .SetLocation(Manifest::UNPACKED)
|
| .Build());
|
| }
|
|
|