Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(161)

Side by Side Diff: webkit/glue/password_form_dom_manager.h

Issue 20378: Reduce the amount of included header files. Vast change like in "Oh God! This... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 11 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698