Chromium Code Reviews| 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); | |
|
Avi (use Gerrit)
2015/01/16 20:01:45
Was hidden, or should be hidden?
Evan Stade
2015/01/16 20:29:14
Was hidden. "Should be hidden" would be "HidePopup
Avi (use Gerrit)
2015/01/16 20:35:12
I got that. I misunderstood the code flow, and tho
| |
| 160 | |
| 158 // Sets the currently selected node's value to be the given data list value. | 161 // Sets the currently selected node's value to be the given data list value. |
| 159 IPC_MESSAGE_ROUTED1(AutofillMsg_AcceptDataListSuggestion, | 162 IPC_MESSAGE_ROUTED1(AutofillMsg_AcceptDataListSuggestion, |
| 160 base::string16 /* accepted data list value */) | 163 base::string16 /* accepted data list value */) |
| 161 | 164 |
| 162 // Tells the renderer to populate the correct password fields with this | 165 // Tells the renderer to populate the correct password fields with this |
| 163 // generated password. | 166 // generated password. |
| 164 IPC_MESSAGE_ROUTED1(AutofillMsg_GeneratedPasswordAccepted, | 167 IPC_MESSAGE_ROUTED1(AutofillMsg_GeneratedPasswordAccepted, |
| 165 base::string16 /* generated_password */) | 168 base::string16 /* generated_password */) |
| 166 | 169 |
| 167 // Tells the renderer to fill the username and password with with given | 170 // 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... | |
| 307 int /* key */, | 310 int /* key */, |
| 308 base::i18n::TextDirection /* text_direction */, | 311 base::i18n::TextDirection /* text_direction */, |
| 309 base::string16 /* username typed by user */, | 312 base::string16 /* username typed by user */, |
| 310 int /* options bitmask of autofill::ShowPasswordSuggestionsOptions */, | 313 int /* options bitmask of autofill::ShowPasswordSuggestionsOptions */, |
| 311 gfx::RectF /* input field bounds, window-relative */) | 314 gfx::RectF /* input field bounds, window-relative */) |
| 312 | 315 |
| 313 // Inform browser of data list values for the curent field. | 316 // Inform browser of data list values for the curent field. |
| 314 IPC_MESSAGE_ROUTED2(AutofillHostMsg_SetDataList, | 317 IPC_MESSAGE_ROUTED2(AutofillHostMsg_SetDataList, |
| 315 std::vector<base::string16> /* values */, | 318 std::vector<base::string16> /* values */, |
| 316 std::vector<base::string16> /* labels */) | 319 std::vector<base::string16> /* labels */) |
| OLD | NEW |