| 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_CONTENT_BROWSER_CONTENT_PASSWORD_MANAGER_DRI
VER_H_ | 5 #ifndef COMPONENTS_PASSWORD_MANAGER_CONTENT_BROWSER_CONTENT_PASSWORD_MANAGER_DRI
VER_H_ |
| 6 #define COMPONENTS_PASSWORD_MANAGER_CONTENT_BROWSER_CONTENT_PASSWORD_MANAGER_DRI
VER_H_ | 6 #define COMPONENTS_PASSWORD_MANAGER_CONTENT_BROWSER_CONTENT_PASSWORD_MANAGER_DRI
VER_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 const autofill::PasswordForm& password_form) override; | 97 const autofill::PasswordForm& password_form) override; |
| 98 void PasswordNoLongerGenerated( | 98 void PasswordNoLongerGenerated( |
| 99 const autofill::PasswordForm& password_form) override; | 99 const autofill::PasswordForm& password_form) override; |
| 100 void ShowPasswordSuggestions(int key, | 100 void ShowPasswordSuggestions(int key, |
| 101 base::i18n::TextDirection text_direction, | 101 base::i18n::TextDirection text_direction, |
| 102 const base::string16& typed_username, | 102 const base::string16& typed_username, |
| 103 int options, | 103 int options, |
| 104 const gfx::RectF& bounds) override; | 104 const gfx::RectF& bounds) override; |
| 105 void ShowNotSecureWarning(base::i18n::TextDirection text_direction, | 105 void ShowNotSecureWarning(base::i18n::TextDirection text_direction, |
| 106 const gfx::RectF& bounds) override; | 106 const gfx::RectF& bounds) override; |
| 107 void PasswordAutofillAgentConstructed() override; | |
| 108 void RecordSavePasswordProgress(const std::string& log) override; | 107 void RecordSavePasswordProgress(const std::string& log) override; |
| 109 void SaveGenerationFieldDetectedByClassifier( | 108 void SaveGenerationFieldDetectedByClassifier( |
| 110 const autofill::PasswordForm& password_form, | 109 const autofill::PasswordForm& password_form, |
| 111 const base::string16& generation_field) override; | 110 const base::string16& generation_field) override; |
| 112 | 111 |
| 113 void OnPasswordFormsParsedNoRenderCheck( | 112 void OnPasswordFormsParsedNoRenderCheck( |
| 114 const std::vector<autofill::PasswordForm>& forms); | 113 const std::vector<autofill::PasswordForm>& forms); |
| 115 void OnFocusedPasswordFormFound(const autofill::PasswordForm& password_form); | 114 void OnFocusedPasswordFormFound(const autofill::PasswordForm& password_form); |
| 116 | 115 |
| 117 // blink::mojom::SensitiveInputVisibility: | 116 // blink::mojom::SensitiveInputVisibility: |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 150 sensitive_input_visibility_bindings_; | 149 sensitive_input_visibility_bindings_; |
| 151 | 150 |
| 152 base::WeakPtrFactory<ContentPasswordManagerDriver> weak_factory_; | 151 base::WeakPtrFactory<ContentPasswordManagerDriver> weak_factory_; |
| 153 | 152 |
| 154 DISALLOW_COPY_AND_ASSIGN(ContentPasswordManagerDriver); | 153 DISALLOW_COPY_AND_ASSIGN(ContentPasswordManagerDriver); |
| 155 }; | 154 }; |
| 156 | 155 |
| 157 } // namespace password_manager | 156 } // namespace password_manager |
| 158 | 157 |
| 159 #endif // COMPONENTS_PASSWORD_MANAGER_CONTENT_BROWSER_CONTENT_PASSWORD_MANAGER_
DRIVER_H_ | 158 #endif // COMPONENTS_PASSWORD_MANAGER_CONTENT_BROWSER_CONTENT_PASSWORD_MANAGER_
DRIVER_H_ |
| OLD | NEW |