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 void InPageNavigation(const autofill::PasswordForm& password_form) override; | 97 void InPageNavigation(const autofill::PasswordForm& password_form) override; |
98 void PresaveGeneratedPassword( | 98 void PresaveGeneratedPassword( |
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, |
| 108 const gfx::RectF& bounds) override; |
107 void PasswordAutofillAgentConstructed() override; | 109 void PasswordAutofillAgentConstructed() override; |
108 void RecordSavePasswordProgress(const std::string& log) override; | 110 void RecordSavePasswordProgress(const std::string& log) override; |
109 void SaveGenerationFieldDetectedByClassifier( | 111 void SaveGenerationFieldDetectedByClassifier( |
110 const autofill::PasswordForm& password_form, | 112 const autofill::PasswordForm& password_form, |
111 const base::string16& generation_field) override; | 113 const base::string16& generation_field) override; |
112 | 114 |
113 void OnPasswordFormsParsedNoRenderCheck( | 115 void OnPasswordFormsParsedNoRenderCheck( |
114 const std::vector<autofill::PasswordForm>& forms); | 116 const std::vector<autofill::PasswordForm>& forms); |
115 void OnFocusedPasswordFormFound(const autofill::PasswordForm& password_form); | 117 void OnFocusedPasswordFormFound(const autofill::PasswordForm& password_form); |
116 | 118 |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
150 sensitive_input_visibility_bindings_; | 152 sensitive_input_visibility_bindings_; |
151 | 153 |
152 base::WeakPtrFactory<ContentPasswordManagerDriver> weak_factory_; | 154 base::WeakPtrFactory<ContentPasswordManagerDriver> weak_factory_; |
153 | 155 |
154 DISALLOW_COPY_AND_ASSIGN(ContentPasswordManagerDriver); | 156 DISALLOW_COPY_AND_ASSIGN(ContentPasswordManagerDriver); |
155 }; | 157 }; |
156 | 158 |
157 } // namespace password_manager | 159 } // namespace password_manager |
158 | 160 |
159 #endif // COMPONENTS_PASSWORD_MANAGER_CONTENT_BROWSER_CONTENT_PASSWORD_MANAGER_
DRIVER_H_ | 161 #endif // COMPONENTS_PASSWORD_MANAGER_CONTENT_BROWSER_CONTENT_PASSWORD_MANAGER_
DRIVER_H_ |
OLD | NEW |