Chromium Code Reviews| Index: components/password_manager/core/browser/password_autofill_manager.h |
| diff --git a/components/password_manager/core/browser/password_autofill_manager.h b/components/password_manager/core/browser/password_autofill_manager.h |
| index 4da59ef9836d45a193449ed9f996378c6de9d812..430bfdd8878d78c796f8913b3095a55d62e20fc6 100644 |
| --- a/components/password_manager/core/browser/password_autofill_manager.h |
| +++ b/components/password_manager/core/browser/password_autofill_manager.h |
| @@ -11,6 +11,7 @@ |
| #include "base/i18n/rtl.h" |
| #include "components/autofill/core/browser/autofill_client.h" |
| #include "components/autofill/core/browser/autofill_popup_delegate.h" |
| +#include "components/autofill/core/common/autofill_constants.h" |
|
Garrett Casto
2014/12/05 19:30:54
Should include this in the cc file instead.
jww
2014/12/05 20:23:10
Done.
|
| #include "components/autofill/core/common/password_form_fill_data.h" |
| namespace gfx { |
| @@ -46,11 +47,12 @@ class PasswordAutofillManager : public autofill::AutofillPopupDelegate { |
| const autofill::PasswordFormFillData& fill_data); |
| // Handles a request from the renderer to show a popup with the given |
| - // |suggestions| from the password manager. |
| + // |suggestions| from the password manager. |options| should be a bitwise mask |
| + // of autofill::ShowPasswordSuggestionsOptions values. |
| void OnShowPasswordSuggestions(int key, |
| base::i18n::TextDirection text_direction, |
| const base::string16& typed_username, |
| - bool show_all, |
| + int options, |
| const gfx::RectF& bounds); |
| // Invoked to clear any page specific cached values. |