Chromium Code Reviews| Index: components/autofill/content/common/autofill_messages.h |
| diff --git a/components/autofill/content/common/autofill_messages.h b/components/autofill/content/common/autofill_messages.h |
| index 57b6a9a4696a59a19a1718cc03f7066c74f648d1..6d6172a654d5a93911c2ebe281d85bfad2f513ba 100644 |
| --- a/components/autofill/content/common/autofill_messages.h |
| +++ b/components/autofill/content/common/autofill_messages.h |
| @@ -10,6 +10,7 @@ |
| #include "base/strings/string16.h" |
| #include "base/time/time.h" |
| #include "components/autofill/content/common/autofill_param_traits_macros.h" |
| +#include "components/autofill/core/common/autofill_constants.h" |
| #include "components/autofill/core/common/form_data.h" |
| #include "components/autofill/core/common/form_data_predictions.h" |
| #include "components/autofill/core/common/form_field_data.h" |
| @@ -286,12 +287,13 @@ IPC_MESSAGE_ROUTED0(AutofillHostMsg_HidePasswordGenerationPopup) |
| // Instruct the browser to show a popup with suggestions filled from data |
| // associated with |key|. The popup will use |text_direction| for displaying |
| // text. |
| -IPC_MESSAGE_ROUTED5(AutofillHostMsg_ShowPasswordSuggestions, |
| - int /* key */, |
| - base::i18n::TextDirection /*text_direction */, |
| - base::string16 /* username typed by user */, |
| - bool /* show all suggestions */, |
| - gfx::RectF /* input field bounds, window-relative */) |
| +IPC_MESSAGE_ROUTED5( |
| + AutofillHostMsg_ShowPasswordSuggestions, |
| + int /* key */, |
| + base::i18n::TextDirection /*text_direction */, |
| + base::string16 /* username typed by user */, |
| + int /* show all suggestions and the field is a password field options */, |
|
Garrett Casto
2014/11/23 07:49:48
I think that keeping the two boolean arguments her
jww
2014/11/25 02:46:26
If you feel strongly about it, I can make the chan
|
| + gfx::RectF /* input field bounds, window-relative */) |
| // Inform browser of data list values for the curent field. |
| IPC_MESSAGE_ROUTED2(AutofillHostMsg_SetDataList, |