Index: content/public/common/password_form.cc |
diff --git a/content/public/common/password_form.cc b/content/public/common/password_form.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..f22082895602694b9fe044b289aba0a860432fb5 |
--- /dev/null |
+++ b/content/public/common/password_form.cc |
@@ -0,0 +1,20 @@ |
+// Copyright (c) 2011 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 "content/public/common/password_form.h" |
+ |
+namespace content { |
+ |
+PasswordForm::PasswordForm() |
+ : scheme(SCHEME_HTML), |
+ ssl_valid(false), |
+ preferred(false), |
+ blacklisted_by_user(false), |
+ type(TYPE_MANUAL) { |
+} |
+ |
+PasswordForm::~PasswordForm() { |
+} |
+ |
+} // namespace content |