Index: components/autofill/content/renderer/password_generation_agent.h |
diff --git a/components/autofill/content/renderer/password_generation_agent.h b/components/autofill/content/renderer/password_generation_agent.h |
index a2c1c12c2c517abbe9a41c8647a00c7454c887a8..5320e5c239b03b8fb15743fe0a7da5fdbd53c2f0 100644 |
--- a/components/autofill/content/renderer/password_generation_agent.h |
+++ b/components/autofill/content/renderer/password_generation_agent.h |
@@ -107,6 +107,16 @@ class PasswordGenerationAgent : public content::RenderViewObserver { |
// stats. |
bool password_edited_; |
+ // True if the generation popup was shown during this navigation. Used to |
+ // track UMA stats per page visit not per display, since the former is more |
Ilya Sherman
2014/10/09 22:03:58
nit: "not per display" -> "rather than per display
Garrett Casto
2014/10/14 18:40:05
Done.
|
+ // interesting. |
+ bool generation_popup_shown_; |
+ |
+ // True if the editing popup was shown during this navigation. Used to track |
+ // UMA stats per page instead of per display since the former is more |
Ilya Sherman
2014/10/09 22:03:58
nit: "instead of per display since" -> "rather tha
Garrett Casto
2014/10/14 18:40:05
Done.
|
+ // interesting. |
+ bool editing_popup_shown_; |
+ |
// If this feature is enabled. Controlled by Finch. |
bool enabled_; |