| 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..6d14d18c94a3f14ea965ebdc2eee97ed6189220d
|
| --- /dev/null
|
| +++ b/components/password_manager/content/common/credential_manager_types.cc
|
| @@ -0,0 +1,24 @@
|
| +// 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 {
|
| +
|
| +CredentialInfo::CredentialInfo() : type(CREDENTIAL_TYPE_UNKNOWN) {
|
| +}
|
| +
|
| +CredentialInfo::CredentialInfo(const base::string16& id,
|
| + const base::string16& name,
|
| + const GURL& avatar)
|
| + : type(CREDENTIAL_TYPE_UNKNOWN),
|
| + id(id),
|
| + name(name),
|
| + avatar(avatar) {
|
| +}
|
| +
|
| +CredentialInfo::~CredentialInfo() {
|
| +}
|
| +
|
| +} // namespace password_manager
|
|
|