| 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 d21fdb86ff3fef28ff1f11c6c7197f59b1c84a4b..db214edbb9e2bde65032025c11c1b494172f0a31 100644
|
| --- a/chrome/browser/extensions/api/identity/identity_apitest.cc
|
| +++ b/chrome/browser/extensions/api/identity/identity_apitest.cc
|
| @@ -422,7 +422,7 @@ class IdentityGetAccountsFunctionTest : public ExtensionBrowserTest {
|
| it != results->end();
|
| ++it) {
|
| std::unique_ptr<api::identity::AccountInfo> info =
|
| - api::identity::AccountInfo::FromValue(**it);
|
| + api::identity::AccountInfo::FromValue(*it);
|
| if (info.get())
|
| result_ids.insert(info->id);
|
| else
|
| @@ -454,11 +454,11 @@ class IdentityGetAccountsFunctionTest : public ExtensionBrowserTest {
|
| } else {
|
| for (const auto& result : *results) {
|
| std::unique_ptr<api::identity::AccountInfo> info =
|
| - api::identity::AccountInfo::FromValue(*result);
|
| + api::identity::AccountInfo::FromValue(result);
|
| if (info.get())
|
| msg << info->id << " ";
|
| else
|
| - msg << *result << "<-" << result->GetType() << " ";
|
| + msg << result << "<-" << result.GetType() << " ";
|
| }
|
| }
|
|
|
|
|