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 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
148 IPC_MESSAGE_ROUTED0(AutofillMsg_ClearPreviewedForm) | 148 IPC_MESSAGE_ROUTED0(AutofillMsg_ClearPreviewedForm) |
149 | 149 |
150 // Sets the currently selected node's value. | 150 // Sets the currently selected node's value. |
151 IPC_MESSAGE_ROUTED1(AutofillMsg_FillFieldWithValue, | 151 IPC_MESSAGE_ROUTED1(AutofillMsg_FillFieldWithValue, |
152 base::string16 /* value */) | 152 base::string16 /* value */) |
153 | 153 |
154 // Sets the suggested value for the currently previewed node. | 154 // Sets the suggested value for the currently previewed node. |
155 IPC_MESSAGE_ROUTED1(AutofillMsg_PreviewFieldWithValue, | 155 IPC_MESSAGE_ROUTED1(AutofillMsg_PreviewFieldWithValue, |
156 base::string16 /* value */) | 156 base::string16 /* value */) |
157 | 157 |
158 // The popup has been hidden. | |
159 IPC_MESSAGE_ROUTED0(AutofillMsg_PopupHidden) | |
160 | |
161 // Sets the currently selected node's value to be the given data list value. | 158 // Sets the currently selected node's value to be the given data list value. |
162 IPC_MESSAGE_ROUTED1(AutofillMsg_AcceptDataListSuggestion, | 159 IPC_MESSAGE_ROUTED1(AutofillMsg_AcceptDataListSuggestion, |
163 base::string16 /* accepted data list value */) | 160 base::string16 /* accepted data list value */) |
164 | 161 |
165 // Tells the renderer to populate the correct password fields with this | 162 // Tells the renderer to populate the correct password fields with this |
166 // generated password. | 163 // generated password. |
167 IPC_MESSAGE_ROUTED1(AutofillMsg_GeneratedPasswordAccepted, | 164 IPC_MESSAGE_ROUTED1(AutofillMsg_GeneratedPasswordAccepted, |
168 base::string16 /* generated_password */) | 165 base::string16 /* generated_password */) |
169 | 166 |
170 // Tells the renderer to fill the username and password with with given | 167 // Tells the renderer to fill the username and password with with given |
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
310 int /* key */, | 307 int /* key */, |
311 base::i18n::TextDirection /* text_direction */, | 308 base::i18n::TextDirection /* text_direction */, |
312 base::string16 /* username typed by user */, | 309 base::string16 /* username typed by user */, |
313 int /* options bitmask of autofill::ShowPasswordSuggestionsOptions */, | 310 int /* options bitmask of autofill::ShowPasswordSuggestionsOptions */, |
314 gfx::RectF /* input field bounds, window-relative */) | 311 gfx::RectF /* input field bounds, window-relative */) |
315 | 312 |
316 // Inform browser of data list values for the curent field. | 313 // Inform browser of data list values for the curent field. |
317 IPC_MESSAGE_ROUTED2(AutofillHostMsg_SetDataList, | 314 IPC_MESSAGE_ROUTED2(AutofillHostMsg_SetDataList, |
318 std::vector<base::string16> /* values */, | 315 std::vector<base::string16> /* values */, |
319 std::vector<base::string16> /* labels */) | 316 std::vector<base::string16> /* labels */) |
OLD | NEW |