| Index: components/password_manager/content/common/credential_manager_types.cc
|
| diff --git a/components/password_manager/content/common/credential_manager_types.cc b/components/password_manager/content/common/credential_manager_types.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..b7e17d47492e41beaadd8c8d6bf4418f528eb359
|
| --- /dev/null
|
| +++ b/components/password_manager/content/common/credential_manager_types.cc
|
| @@ -0,0 +1,23 @@
|
| +// Copyright 2014 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#include "components/password_manager/content/common/credential_manager_types.h"
|
| +
|
| +namespace password_manager {
|
| +
|
| +CredentialManagerCredentialInfo::CredentialManagerCredentialInfo()
|
| + : type(CREDENTIAL_MANAGER_CREDENTIAL_TYPE_UNKNOWN) {
|
| +}
|
| +
|
| +CredentialManagerCredentialInfo::CredentialManagerCredentialInfo(base::string16 id, base::string16 name, GURL avatarURL)
|
| + : type(CREDENTIAL_MANAGER_CREDENTIAL_TYPE_UNKNOWN)
|
| + , id(id)
|
| + , name(name)
|
| + , avatarURL(avatarURL) {
|
| +}
|
| +
|
| +CredentialManagerCredentialInfo::~CredentialManagerCredentialInfo() {
|
| +}
|
| +
|
| +} // namespace password_manager
|
|
|