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

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: 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..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

Powered by Google App Engine
This is Rietveld 408576698