| Index: components/password_manager/core/common/credential_manager_types.cc
|
| diff --git a/components/password_manager/core/common/credential_manager_types.cc b/components/password_manager/core/common/credential_manager_types.cc
|
| index b3978432ea0b7e61b76b4d80c59e1c8c184c6d31..7c00345d47f6b5a2266eb7ef19970c2810b336ed 100644
|
| --- a/components/password_manager/core/common/credential_manager_types.cc
|
| +++ b/components/password_manager/core/common/credential_manager_types.cc
|
| @@ -9,6 +9,10 @@
|
|
|
| namespace password_manager {
|
|
|
| +std::ostream& operator<<(std::ostream& out, CredentialType type) {
|
| + return out << static_cast<int>(type);
|
| +}
|
| +
|
| CredentialInfo::CredentialInfo() : type(CredentialType::CREDENTIAL_TYPE_EMPTY) {
|
| }
|
|
|
|
|