OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_RENDERER_AUTOFILL_PASSWORD_AUTOFILL_MANAGER_H_ | 5 #ifndef CHROME_RENDERER_AUTOFILL_PASSWORD_AUTOFILL_MANAGER_H_ |
6 #define CHROME_RENDERER_AUTOFILL_PASSWORD_AUTOFILL_MANAGER_H_ | 6 #define CHROME_RENDERER_AUTOFILL_PASSWORD_AUTOFILL_MANAGER_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <map> | 9 #include <map> |
10 #include <vector> | 10 #include <vector> |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
43 bool DidAcceptAutofillSuggestion(const WebKit::WebNode& node, | 43 bool DidAcceptAutofillSuggestion(const WebKit::WebNode& node, |
44 const WebKit::WebString& value); | 44 const WebKit::WebString& value); |
45 // A no-op. No filling happens for selection. But this method returns | 45 // A no-op. No filling happens for selection. But this method returns |
46 // true when |node| is fillable by password Autofill. | 46 // true when |node| is fillable by password Autofill. |
47 bool DidSelectAutofillSuggestion(const WebKit::WebNode& node); | 47 bool DidSelectAutofillSuggestion(const WebKit::WebNode& node); |
48 // A no-op. Password forms are not previewed, so they do not need to be | 48 // A no-op. Password forms are not previewed, so they do not need to be |
49 // cleared when the selection changes. However, this method returns | 49 // cleared when the selection changes. However, this method returns |
50 // true when |node| is fillable by password Autofill. | 50 // true when |node| is fillable by password Autofill. |
51 bool DidClearAutofillSelection(const WebKit::WebNode& node); | 51 bool DidClearAutofillSelection(const WebKit::WebNode& node); |
52 | 52 |
| 53 // For browser side Password Manager. |
| 54 void HandleKeyDown(const WebKit::WebInputElement& node, int key_code); |
| 55 |
53 private: | 56 private: |
54 friend class PasswordAutofillManagerTest; | 57 friend class PasswordAutofillManagerTest; |
55 | 58 |
56 struct PasswordInfo { | 59 struct PasswordInfo { |
57 WebKit::WebInputElement password_field; | 60 WebKit::WebInputElement password_field; |
58 webkit::forms::PasswordFormFillData fill_data; | 61 webkit::forms::PasswordFormFillData fill_data; |
59 bool backspace_pressed_last; | 62 bool backspace_pressed_last; |
60 PasswordInfo() : backspace_pressed_last(false) {} | 63 PasswordInfo() : backspace_pressed_last(false) {} |
61 }; | 64 }; |
62 typedef std::map<WebKit::WebElement, PasswordInfo> LoginToPasswordInfoMap; | 65 typedef std::map<WebKit::WebElement, PasswordInfo> LoginToPasswordInfoMap; |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
115 LoginToPasswordInfoMap login_to_password_info_; | 118 LoginToPasswordInfoMap login_to_password_info_; |
116 | 119 |
117 base::WeakPtrFactory<PasswordAutofillManager> weak_ptr_factory_; | 120 base::WeakPtrFactory<PasswordAutofillManager> weak_ptr_factory_; |
118 | 121 |
119 DISALLOW_COPY_AND_ASSIGN(PasswordAutofillManager); | 122 DISALLOW_COPY_AND_ASSIGN(PasswordAutofillManager); |
120 }; | 123 }; |
121 | 124 |
122 } // namespace autofill | 125 } // namespace autofill |
123 | 126 |
124 #endif // CHROME_RENDERER_AUTOFILL_PASSWORD_AUTOFILL_MANAGER_H_ | 127 #endif // CHROME_RENDERER_AUTOFILL_PASSWORD_AUTOFILL_MANAGER_H_ |
OLD | NEW |