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