| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_MANAGER_H_ | 5 #ifndef CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_MANAGER_H_ |
| 6 #define CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_MANAGER_H_ | 6 #define CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_MANAGER_H_ |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/callback.h" | 10 #include "base/callback.h" |
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 SAVING_DISABLED, | 106 SAVING_DISABLED, |
| 107 EMPTY_PASSWORD, | 107 EMPTY_PASSWORD, |
| 108 NO_MATCHING_FORM, | 108 NO_MATCHING_FORM, |
| 109 MATCHING_NOT_COMPLETE, | 109 MATCHING_NOT_COMPLETE, |
| 110 FORM_BLACKLISTED, | 110 FORM_BLACKLISTED, |
| 111 INVALID_FORM, | 111 INVALID_FORM, |
| 112 AUTOCOMPLETE_OFF, | 112 AUTOCOMPLETE_OFF, |
| 113 MAX_FAILURE_VALUE | 113 MAX_FAILURE_VALUE |
| 114 }; | 114 }; |
| 115 | 115 |
| 116 // Log failure for UMA | 116 // Log failure for UMA. Logs additional metrics if the |form_origin| |
| 117 void RecordFailure(ProvisionalSaveFailure failure); | 117 // corresponds to one of the top, explicitly monitored websites. |
| 118 void RecordFailure(ProvisionalSaveFailure failure, |
| 119 const std::string& form_origin); |
| 118 | 120 |
| 119 // Possibly set up FieldTrial for testing other possible usernames. This only | 121 // Possibly set up FieldTrial for testing other possible usernames. This only |
| 120 // happens if there are other_possible_usernames to be shown and the | 122 // happens if there are other_possible_usernames to be shown and the |
| 121 // experiment hasn't already been initialized. We setup the experiment at | 123 // experiment hasn't already been initialized. We setup the experiment at |
| 122 // such a late time because this experiment will only affect a small number | 124 // such a late time because this experiment will only affect a small number |
| 123 // of users so we want to include a larger fraction of these users than the | 125 // of users so we want to include a larger fraction of these users than the |
| 124 // normal 10%. | 126 // normal 10%. |
| 125 void PossiblyInitializeUsernamesExperiment( | 127 void PossiblyInitializeUsernamesExperiment( |
| 126 const autofill::PasswordFormMap& matches) const; | 128 const autofill::PasswordFormMap& matches) const; |
| 127 | 129 |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 169 // notification in const member functions. | 171 // notification in const member functions. |
| 170 mutable ObserverList<LoginModelObserver> observers_; | 172 mutable ObserverList<LoginModelObserver> observers_; |
| 171 | 173 |
| 172 // Callbacks to be notified when a password form has been submitted. | 174 // Callbacks to be notified when a password form has been submitted. |
| 173 std::vector<PasswordSubmittedCallback> submission_callbacks_; | 175 std::vector<PasswordSubmittedCallback> submission_callbacks_; |
| 174 | 176 |
| 175 DISALLOW_COPY_AND_ASSIGN(PasswordManager); | 177 DISALLOW_COPY_AND_ASSIGN(PasswordManager); |
| 176 }; | 178 }; |
| 177 | 179 |
| 178 #endif // CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_MANAGER_H_ | 180 #endif // CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_MANAGER_H_ |
| OLD | NEW |