OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chrome/common/common_param_traits.h" | 5 #include "chrome/common/common_param_traits.h" |
| 6 #include "content/common/common_param_traits.h" |
6 #include "webkit/glue/form_data.h" | 7 #include "webkit/glue/form_data.h" |
7 #include "webkit/glue/form_field.h" | 8 #include "webkit/glue/form_field.h" |
8 #include "webkit/glue/password_form.h" | 9 #include "webkit/glue/password_form.h" |
9 #include "webkit/glue/password_form_dom_manager.h" | 10 #include "webkit/glue/password_form_dom_manager.h" |
10 | 11 |
11 #define IPC_MESSAGE_IMPL | 12 #define IPC_MESSAGE_IMPL |
12 #include "chrome/common/autofill_messages.h" | 13 #include "chrome/common/autofill_messages.h" |
13 | 14 |
14 namespace IPC { | 15 namespace IPC { |
15 | 16 |
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
95 ReadParam(m, iter, &r->additional_logins) && | 96 ReadParam(m, iter, &r->additional_logins) && |
96 ReadParam(m, iter, &r->wait_for_username); | 97 ReadParam(m, iter, &r->wait_for_username); |
97 } | 98 } |
98 | 99 |
99 void ParamTraits<webkit_glue::PasswordFormFillData>::Log(const param_type& p, | 100 void ParamTraits<webkit_glue::PasswordFormFillData>::Log(const param_type& p, |
100 std::string* l) { | 101 std::string* l) { |
101 l->append("<PasswordFormFillData>"); | 102 l->append("<PasswordFormFillData>"); |
102 } | 103 } |
103 | 104 |
104 } // namespace IPC | 105 } // namespace IPC |
OLD | NEW |