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..f9b7e02c09358ec72e1632525f517c60a6d3a8b3 |
--- /dev/null |
+++ b/components/password_manager/content/common/credential_manager_types.cc |
@@ -0,0 +1,25 @@ |
+// 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) { |
Ilya Sherman
2014/08/21 00:11:21
nit: No longer a need to wrap.
Mike West
2014/08/21 10:20:47
Done.
|
+} |
+ |
+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 |