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 274 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 285 autofill::FormFieldData, /* the user name field */ | 285 autofill::FormFieldData, /* the user name field */ |
| 286 autofill::PasswordFormFillData /* password pairings */) | 286 autofill::PasswordFormFillData /* password pairings */) |
| 287 | 287 |
| 288 // Instruct the browser to show a popup with suggestions for the form field. | 288 // Instruct the browser to show a popup with suggestions for the form field. |
| 289 IPC_MESSAGE_ROUTED4(AutofillHostMsg_ShowPasswordSuggestions, | 289 IPC_MESSAGE_ROUTED4(AutofillHostMsg_ShowPasswordSuggestions, |
| 290 autofill::FormFieldData /* the form field */, | 290 autofill::FormFieldData /* the form field */, |
| 291 base::string16 /* username typed by user */, | 291 base::string16 /* username typed by user */, |
| 292 bool /* show all suggestions */, | 292 bool /* show all suggestions */, |
| 293 gfx::RectF /* input field bounds, window-relative */) | 293 gfx::RectF /* input field bounds, window-relative */) |
| 294 | 294 |
| 295 // Instruct the browser to show a popup with suggestions from the password | |
| 296 // manager for a pasword field. | |
| 297 IPC_MESSAGE_ROUTED4(AutofillHostMsg_ShowPasswordSuggestionsForPasswordField, | |
|
Garrett Casto
2014/11/04 23:35:30
Seems like this should just be an additional param
jww
2014/11/06 21:28:56
Done.
| |
| 298 autofill::FormFieldData /* the form field */, | |
| 299 base::string16 /* username */, | |
| 300 bool /* show all suggestions */, | |
| 301 gfx::RectF /* input field bounds, window-relative */) | |
| 302 | |
| 295 // Inform browser of data list values for the curent field. | 303 // Inform browser of data list values for the curent field. |
| 296 IPC_MESSAGE_ROUTED2(AutofillHostMsg_SetDataList, | 304 IPC_MESSAGE_ROUTED2(AutofillHostMsg_SetDataList, |
| 297 std::vector<base::string16> /* values */, | 305 std::vector<base::string16> /* values */, |
| 298 std::vector<base::string16> /* labels */) | 306 std::vector<base::string16> /* labels */) |
| OLD | NEW |