| Index: components/autofill/content/renderer/autofill_agent.h
|
| diff --git a/components/autofill/content/renderer/autofill_agent.h b/components/autofill/content/renderer/autofill_agent.h
|
| index c75d5d6f443a51555e923adf712f5de57a76ed2a..c71f31d4bbcd22ee47cbe119e593ecbbbb7d06ac 100644
|
| --- a/components/autofill/content/renderer/autofill_agent.h
|
| +++ b/components/autofill/content/renderer/autofill_agent.h
|
| @@ -266,6 +266,12 @@ class AutofillAgent : public content::RenderFrameObserver,
|
| // messages to close the Autofill popup when it can't possibly be showing.
|
| bool is_popup_possibly_visible_;
|
|
|
| + // If the generation popup is possibly visible. This is tracked to prevent
|
| + // generation UI from displaying at the same time as password manager UI.
|
| + // This is needed because generation is shown on field focus vs. field click
|
| + // for the password manager. TODO(gcasto): Have both UIs show on focus.
|
| + bool is_generation_popup_possibly_visible_;
|
| +
|
| base::WeakPtrFactory<AutofillAgent> weak_ptr_factory_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(AutofillAgent);
|
|
|