| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 // A concrete definition of the DOM autocomplete framework defined by | 5 // A concrete definition of the DOM autocomplete framework defined by |
| 6 // autocomplete_input_listener.h, for the password manager. | 6 // autocomplete_input_listener.h, for the password manager. |
| 7 | 7 |
| 8 #ifndef WEBKIT_GLUE_PASSWORDAUTOCOMPLETELISTENER_IMPL_H_ | 8 #ifndef WEBKIT_GLUE_PASSWORDAUTOCOMPLETELISTENER_IMPL_H_ |
| 9 #define WEBKIT_GLUE_PASSWORDAUTOCOMPLETELISTENER_IMPL_H_ | 9 #define WEBKIT_GLUE_PASSWORDAUTOCOMPLETELISTENER_IMPL_H_ |
| 10 | 10 |
| 11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
| 12 #include "base/scoped_ptr.h" | 12 #include "base/scoped_ptr.h" |
| 13 #include "webkit/api/public/WebInputElement.h" | 13 #include "third_party/WebKit/WebKit/chromium/public/WebInputElement.h" |
| 14 #include "webkit/api/public/WebPasswordAutocompleteListener.h" | 14 #include "third_party/WebKit/WebKit/chromium/public/WebPasswordAutocompleteListe
ner.h" |
| 15 #include "webkit/glue/password_form_dom_manager.h" | 15 #include "webkit/glue/password_form_dom_manager.h" |
| 16 | 16 |
| 17 using WebKit::WebInputElement; | 17 using WebKit::WebInputElement; |
| 18 using WebKit::WebString; | 18 using WebKit::WebString; |
| 19 | 19 |
| 20 namespace webkit_glue { | 20 namespace webkit_glue { |
| 21 | 21 |
| 22 | 22 |
| 23 // A proxy interface to a WebInputElement for inline autocomplete. The proxy | 23 // A proxy interface to a WebInputElement for inline autocomplete. The proxy |
| 24 // is overridden by webpasswordautocompletelistener_unittest. | 24 // is overridden by webpasswordautocompletelistener_unittest. |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 | 77 |
| 78 // Contains the extra logins for matching on delta/blur. | 78 // Contains the extra logins for matching on delta/blur. |
| 79 PasswordFormDomManager::FillData data_; | 79 PasswordFormDomManager::FillData data_; |
| 80 | 80 |
| 81 DISALLOW_COPY_AND_ASSIGN(WebPasswordAutocompleteListenerImpl); | 81 DISALLOW_COPY_AND_ASSIGN(WebPasswordAutocompleteListenerImpl); |
| 82 }; | 82 }; |
| 83 | 83 |
| 84 } // webkit_glue | 84 } // webkit_glue |
| 85 | 85 |
| 86 #endif // WEBKIT_GLUE_PASSWORD_AUTOCOMPLETE_LISTENER_H_ | 86 #endif // WEBKIT_GLUE_PASSWORD_AUTOCOMPLETE_LISTENER_H_ |
| OLD | NEW |