| Index: components/autofill/content/renderer/password_autofill_agent.h
|
| diff --git a/components/autofill/content/renderer/password_autofill_agent.h b/components/autofill/content/renderer/password_autofill_agent.h
|
| index 582f331b3d5fb15dcdb2ecf0a006b7cc661866b8..a204f4538183a118c3119f88254334e196f7fda0 100644
|
| --- a/components/autofill/content/renderer/password_autofill_agent.h
|
| +++ b/components/autofill/content/renderer/password_autofill_agent.h
|
| @@ -128,6 +128,7 @@ class PasswordAutofillAgent : public content::RenderViewObserver {
|
|
|
| // RenderView IPC handlers:
|
| void OnFillPasswordForm(const PasswordFormFillData& form_data);
|
| + void OnChangeLoggingState(bool active);
|
|
|
| // Scans the given frame for password forms and sends them up to the browser.
|
| // If |only_visible| is true, only forms visible in the layout are sent.
|
| @@ -193,6 +194,9 @@ class PasswordAutofillAgent : public content::RenderViewObserver {
|
|
|
| PasswordValueGatekeeper gatekeeper_;
|
|
|
| + // True indicates that user debug information should be logged.
|
| + bool logging_state_active_;
|
| +
|
| base::WeakPtrFactory<PasswordAutofillAgent> weak_ptr_factory_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(PasswordAutofillAgent);
|
|
|