Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(540)

Unified Diff: components/password_manager/content/common/credential_manager_types.cc

Issue 464883002: Credential Manager: Renderer-side implementation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Feedback3. Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698