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

Unified Diff: webkit/forms/password_form_dom_manager.h

Issue 8680040: Group forms-related files in webkit/glue in a forms/ subdirectory. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase + another build fix Created 9 years 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webkit/forms/password_form.cc ('k') | webkit/forms/password_form_dom_manager.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/forms/password_form_dom_manager.h
diff --git a/webkit/glue/password_form_dom_manager.h b/webkit/forms/password_form_dom_manager.h
similarity index 79%
rename from webkit/glue/password_form_dom_manager.h
rename to webkit/forms/password_form_dom_manager.h
index b0891e4aa11373858ba902d306040fbee6970ab5..7354dedb4fd62a5284f5919ffa73d39fde211180 100644
--- a/webkit/glue/password_form_dom_manager.h
+++ b/webkit/forms/password_form_dom_manager.h
@@ -2,20 +2,21 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef WEBKIT_GLUE_PASSWORD_FORM_DOM_MANAGER_H_
-#define WEBKIT_GLUE_PASSWORD_FORM_DOM_MANAGER_H_
+#ifndef WEBKIT_FORMS_PASSWORD_FORM_DOM_MANAGER_H_
+#define WEBKIT_FORMS_PASSWORD_FORM_DOM_MANAGER_H_
#include <map>
-#include "webkit/glue/form_data.h"
-#include "webkit/glue/password_form.h"
-#include "webkit/glue/webkit_glue_export.h"
+#include "webkit/forms/form_data.h"
+#include "webkit/forms/password_form.h"
+#include "webkit/forms/webkit_forms_export.h"
namespace WebKit {
class WebForm;
}
-namespace webkit_glue {
+namespace webkit {
+namespace forms {
// Structure used for autofilling password forms.
// basic_data identifies the HTML form on the page and preferred username/
@@ -26,7 +27,7 @@ namespace webkit_glue {
// unless the PasswordManager determined there is an additional risk
// associated with this form. This can happen, for example, if action URI's
// of the observed form and our saved representation don't match up.
-struct WEBKIT_GLUE_EXPORT PasswordFormFillData {
+struct WEBKIT_FORMS_EXPORT PasswordFormFillData {
typedef std::map<string16, string16> LoginCollection;
FormData basic_data;
@@ -42,7 +43,7 @@ class PasswordFormDomManager {
// custom metadata to DOM nodes, so we have to do this every time an event
// happens with a given form and compare against previously Create'd forms
// to identify..which sucks.
- WEBKIT_GLUE_EXPORT static PasswordForm* CreatePasswordForm(
+ WEBKIT_FORMS_EXPORT static PasswordForm* CreatePasswordForm(
const WebKit::WebFormElement& form);
// Create a FillData structure in preparation for autofilling a form,
@@ -51,7 +52,7 @@ class PasswordFormDomManager {
// preferred_match should equal (address) one of matches.
// wait_for_username_before_autofill is true if we should not autofill
// anything until the user typed in a valid username and blurred the field.
- WEBKIT_GLUE_EXPORT static void InitFillData(const PasswordForm& form_on_page,
+ WEBKIT_FORMS_EXPORT static void InitFillData(const PasswordForm& form_on_page,
const PasswordFormMap& matches,
const PasswordForm* const preferred_match,
bool wait_for_username_before_autofill,
@@ -60,6 +61,7 @@ class PasswordFormDomManager {
DISALLOW_IMPLICIT_CONSTRUCTORS(PasswordFormDomManager);
};
-} // namespace webkit_glue
+} // namespace forms
+} // namespace webkit
-#endif // WEBKIT_GLUE_PASSWORD_FORM_DOM_MANAGER_H__
+#endif // WEBKIT_FORMS_PASSWORD_FORM_DOM_MANAGER_H__
« no previous file with comments | « webkit/forms/password_form.cc ('k') | webkit/forms/password_form_dom_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698