| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 // Multiply-included message file, hence no include guard. | 5 // Multiply-included message file, hence no include guard. |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/strings/string16.h" | 10 #include "base/strings/string16.h" |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 IPC_STRUCT_TRAITS_MEMBER(experiment_id) | 70 IPC_STRUCT_TRAITS_MEMBER(experiment_id) |
| 71 IPC_STRUCT_TRAITS_MEMBER(fields) | 71 IPC_STRUCT_TRAITS_MEMBER(fields) |
| 72 IPC_STRUCT_TRAITS_END() | 72 IPC_STRUCT_TRAITS_END() |
| 73 | 73 |
| 74 IPC_STRUCT_TRAITS_BEGIN(autofill::UsernamesCollectionKey) | 74 IPC_STRUCT_TRAITS_BEGIN(autofill::UsernamesCollectionKey) |
| 75 IPC_STRUCT_TRAITS_MEMBER(username) | 75 IPC_STRUCT_TRAITS_MEMBER(username) |
| 76 IPC_STRUCT_TRAITS_MEMBER(password) | 76 IPC_STRUCT_TRAITS_MEMBER(password) |
| 77 IPC_STRUCT_TRAITS_END() | 77 IPC_STRUCT_TRAITS_END() |
| 78 | 78 |
| 79 IPC_STRUCT_TRAITS_BEGIN(autofill::PasswordFormFillData) | 79 IPC_STRUCT_TRAITS_BEGIN(autofill::PasswordFormFillData) |
| 80 IPC_STRUCT_TRAITS_MEMBER(basic_data) | 80 IPC_STRUCT_TRAITS_MEMBER(name) |
| 81 IPC_STRUCT_TRAITS_MEMBER(origin) |
| 82 IPC_STRUCT_TRAITS_MEMBER(action) |
| 83 IPC_STRUCT_TRAITS_MEMBER(user_submitted) |
| 84 IPC_STRUCT_TRAITS_MEMBER(username_field) |
| 85 IPC_STRUCT_TRAITS_MEMBER(password_field) |
| 81 IPC_STRUCT_TRAITS_MEMBER(preferred_realm) | 86 IPC_STRUCT_TRAITS_MEMBER(preferred_realm) |
| 82 IPC_STRUCT_TRAITS_MEMBER(additional_logins) | 87 IPC_STRUCT_TRAITS_MEMBER(additional_logins) |
| 83 IPC_STRUCT_TRAITS_MEMBER(other_possible_usernames) | 88 IPC_STRUCT_TRAITS_MEMBER(other_possible_usernames) |
| 84 IPC_STRUCT_TRAITS_MEMBER(wait_for_username) | 89 IPC_STRUCT_TRAITS_MEMBER(wait_for_username) |
| 85 IPC_STRUCT_TRAITS_END() | 90 IPC_STRUCT_TRAITS_END() |
| 86 | 91 |
| 87 IPC_STRUCT_TRAITS_BEGIN(autofill::PasswordAndRealm) | 92 IPC_STRUCT_TRAITS_BEGIN(autofill::PasswordAndRealm) |
| 88 IPC_STRUCT_TRAITS_MEMBER(password) | 93 IPC_STRUCT_TRAITS_MEMBER(password) |
| 89 IPC_STRUCT_TRAITS_MEMBER(realm) | 94 IPC_STRUCT_TRAITS_MEMBER(realm) |
| 90 IPC_STRUCT_TRAITS_END() | 95 IPC_STRUCT_TRAITS_END() |
| (...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 290 int /* key */, | 295 int /* key */, |
| 291 base::i18n::TextDirection /*text_direction */, | 296 base::i18n::TextDirection /*text_direction */, |
| 292 base::string16 /* username typed by user */, | 297 base::string16 /* username typed by user */, |
| 293 bool /* show all suggestions */, | 298 bool /* show all suggestions */, |
| 294 gfx::RectF /* input field bounds, window-relative */) | 299 gfx::RectF /* input field bounds, window-relative */) |
| 295 | 300 |
| 296 // Inform browser of data list values for the curent field. | 301 // Inform browser of data list values for the curent field. |
| 297 IPC_MESSAGE_ROUTED2(AutofillHostMsg_SetDataList, | 302 IPC_MESSAGE_ROUTED2(AutofillHostMsg_SetDataList, |
| 298 std::vector<base::string16> /* values */, | 303 std::vector<base::string16> /* values */, |
| 299 std::vector<base::string16> /* labels */) | 304 std::vector<base::string16> /* labels */) |
| OLD | NEW |