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 #ifndef WEBKIT_GLUE_PASSWORD_FORM_DOM_MANAGER_H__ | 5 #ifndef WEBKIT_GLUE_PASSWORD_FORM_DOM_MANAGER_H__ |
6 #define WEBKIT_GLUE_PASSWORD_FORM_DOM_MANAGER_H__ | 6 #define WEBKIT_GLUE_PASSWORD_FORM_DOM_MANAGER_H__ |
7 | 7 |
8 #include "webkit/glue/form_data.h" | 8 #include "webkit/glue/form_data.h" |
9 #include "webkit/glue/password_form.h" | 9 #include "webkit/glue/password_form.h" |
10 | 10 |
11 #include <map> | |
12 #include <vector> | |
13 | |
14 namespace WebCore { | 11 namespace WebCore { |
15 class HTMLFormElement; | 12 class HTMLFormElement; |
16 class HTMLInputElement; | 13 class HTMLInputElement; |
17 class HTMLFormControlElement; | 14 class HTMLFormControlElement; |
18 } | 15 } |
19 | 16 |
20 class GURL; | 17 class GURL; |
21 | 18 |
22 class PasswordFormDomManager { | 19 class PasswordFormDomManager { |
23 public: | 20 public: |
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
126 WebCore::HTMLInputElement* username, | 123 WebCore::HTMLInputElement* username, |
127 WebCore::HTMLInputElement* old_password, | 124 WebCore::HTMLInputElement* old_password, |
128 WebCore::HTMLInputElement* password); | 125 WebCore::HTMLInputElement* password); |
129 | 126 |
130 // This class can't be instantiated. | 127 // This class can't be instantiated. |
131 DISALLOW_IMPLICIT_CONSTRUCTORS(PasswordFormDomManager); | 128 DISALLOW_IMPLICIT_CONSTRUCTORS(PasswordFormDomManager); |
132 }; | 129 }; |
133 | 130 |
134 #endif // WEBKIT_GLUE_PASSWORD_FORM_DOM_MANAGER_H__ | 131 #endif // WEBKIT_GLUE_PASSWORD_FORM_DOM_MANAGER_H__ |
135 | 132 |
OLD | NEW |