| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_PASSWORD_MANAGER_METRICS_UTIL_H
_ | 5 #ifndef COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_PASSWORD_MANAGER_METRICS_UTIL_H
_ |
| 6 #define COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_PASSWORD_MANAGER_METRICS_UTIL_H
_ | 6 #define COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_PASSWORD_MANAGER_METRICS_UTIL_H
_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 | 9 |
| 10 #include <string> | 10 #include <string> |
| (...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 263 void LogShowedHttpNotSecureExplanation(); | 263 void LogShowedHttpNotSecureExplanation(); |
| 264 | 264 |
| 265 // Log that the Form-Not-Secure warning was shown. Should be called at most once | 265 // Log that the Form-Not-Secure warning was shown. Should be called at most once |
| 266 // per main-frame navigation. | 266 // per main-frame navigation. |
| 267 void LogShowedFormNotSecureWarningOnCurrentNavigation(); | 267 void LogShowedFormNotSecureWarningOnCurrentNavigation(); |
| 268 | 268 |
| 269 // Log a password successful submission event. | 269 // Log a password successful submission event. |
| 270 void LogPasswordSuccessfulSubmissionIndicatorEvent( | 270 void LogPasswordSuccessfulSubmissionIndicatorEvent( |
| 271 autofill::PasswordForm::SubmissionIndicatorEvent event); | 271 autofill::PasswordForm::SubmissionIndicatorEvent event); |
| 272 | 272 |
| 273 // Log a password successful submission event for accepted by user password save |
| 274 // or update. |
| 275 void LogPasswordAcceptedSaveUpdateSubmissionIndicatorEvent( |
| 276 autofill::PasswordForm::SubmissionIndicatorEvent event); |
| 277 |
| 273 } // namespace metrics_util | 278 } // namespace metrics_util |
| 274 | 279 |
| 275 } // namespace password_manager | 280 } // namespace password_manager |
| 276 | 281 |
| 277 #endif // COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_PASSWORD_MANAGER_METRICS_UTI
L_H_ | 282 #endif // COMPONENTS_PASSWORD_MANAGER_CORE_BROWSER_PASSWORD_MANAGER_METRICS_UTI
L_H_ |
| OLD | NEW |