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

Unified Diff: components/autofill/core/common/autofill_param_traits_macros.h

Issue 23742004: Move PasswordForm from //content to //autofill. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@move_password_form_conversion_utils
Patch Set: Rebase Created 7 years, 3 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/autofill/core/common/autofill_param_traits_macros.h
diff --git a/components/autofill/core/common/autofill_param_traits_macros.h b/components/autofill/core/common/autofill_param_traits_macros.h
new file mode 100644
index 0000000000000000000000000000000000000000..b0a1ccf69e26fdab73c669cb0080f6f2205a0199
--- /dev/null
+++ b/components/autofill/core/common/autofill_param_traits_macros.h
@@ -0,0 +1,36 @@
+// Copyright 2013 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.
+
+// Singly or multiply-included shared traits file depending on circumstances.
+// This allows the use of Autofill IPC serialization macros in more than one IPC
+// message file.
+#ifndef COMPONENTS_AUTOFILL_CORE_COMMON_AUTOFILL_PARAM_TRAITS_MACROS_H_
+#define COMPONENTS_AUTOFILL_CORE_COMMON_AUTOFILL_PARAM_TRAITS_MACROS_H_
+
+#include "components/autofill/core/common/password_form.h"
+#include "ipc/ipc_message_macros.h"
+
+IPC_ENUM_TRAITS(autofill::PasswordForm::Type)
+
+IPC_STRUCT_TRAITS_BEGIN(autofill::PasswordForm)
+ IPC_STRUCT_TRAITS_MEMBER(signon_realm)
+ IPC_STRUCT_TRAITS_MEMBER(origin)
+ IPC_STRUCT_TRAITS_MEMBER(action)
+ IPC_STRUCT_TRAITS_MEMBER(submit_element)
+ IPC_STRUCT_TRAITS_MEMBER(username_element)
+ IPC_STRUCT_TRAITS_MEMBER(username_value)
+ IPC_STRUCT_TRAITS_MEMBER(other_possible_usernames)
+ IPC_STRUCT_TRAITS_MEMBER(password_element)
+ IPC_STRUCT_TRAITS_MEMBER(password_value)
+ IPC_STRUCT_TRAITS_MEMBER(password_autocomplete_set)
+ IPC_STRUCT_TRAITS_MEMBER(old_password_element)
+ IPC_STRUCT_TRAITS_MEMBER(old_password_value)
+ IPC_STRUCT_TRAITS_MEMBER(ssl_valid)
+ IPC_STRUCT_TRAITS_MEMBER(preferred)
+ IPC_STRUCT_TRAITS_MEMBER(blacklisted_by_user)
+ IPC_STRUCT_TRAITS_MEMBER(type)
+ IPC_STRUCT_TRAITS_MEMBER(times_used)
+IPC_STRUCT_TRAITS_END()
+
+#endif // COMPONENTS_AUTOFILL_CORE_COMMON_AUTOFILL_PARAM_TRAITS_MACROS_H_
« no previous file with comments | « components/autofill/core/common/autofill_messages.h ('k') | components/autofill/core/common/password_form.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698