| OLD | NEW |
| 1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_AUTOFILL_COMMON_PASSWORD_FORM_FILL_DATA_H_ | 5 #ifndef COMPONENTS_AUTOFILL_COMMON_PASSWORD_FORM_FILL_DATA_H_ |
| 6 #define COMPONENTS_AUTOFILL_COMMON_PASSWORD_FORM_FILL_DATA_H_ | 6 #define COMPONENTS_AUTOFILL_COMMON_PASSWORD_FORM_FILL_DATA_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 | 9 |
| 10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| 11 #include "components/autofill/common/form_data.h" | 11 #include "components/autofill/common/form_data.h" |
| (...skipping 25 matching lines...) Expand all Loading... |
| 37 // wait_for_username_before_autofill is true if we should not autofill | 37 // wait_for_username_before_autofill is true if we should not autofill |
| 38 // anything until the user typed in a valid username and blurred the field. | 38 // anything until the user typed in a valid username and blurred the field. |
| 39 void InitPasswordFormFillData( | 39 void InitPasswordFormFillData( |
| 40 const content::PasswordForm& form_on_page, | 40 const content::PasswordForm& form_on_page, |
| 41 const content::PasswordFormMap& matches, | 41 const content::PasswordFormMap& matches, |
| 42 const content::PasswordForm* const preferred_match, | 42 const content::PasswordForm* const preferred_match, |
| 43 bool wait_for_username_before_autofill, | 43 bool wait_for_username_before_autofill, |
| 44 PasswordFormFillData* result); | 44 PasswordFormFillData* result); |
| 45 | 45 |
| 46 #endif // COMPONENTS_AUTOFILL_COMMON_PASSWORD_FORM_FILL_DATA_H__ | 46 #endif // COMPONENTS_AUTOFILL_COMMON_PASSWORD_FORM_FILL_DATA_H__ |
| OLD | NEW |