summaryrefslogtreecommitdiffstats
path: root/webkit/glue/password_form.h
diff options
context:
space:
mode:
authordarin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-06-16 19:50:56 +0000
committerdarin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-06-16 19:50:56 +0000
commited3fb034eb4b7da69bbc4f3e3da47093dabc481e (patch)
treed08b2837ab8b05b98fef6990edd26a9d00465589 /webkit/glue/password_form.h
parent5eb55c2f42f70fe544a04d200cdd059377d310f7 (diff)
downloadchromium_src-ed3fb034eb4b7da69bbc4f3e3da47093dabc481e.zip
chromium_src-ed3fb034eb4b7da69bbc4f3e3da47093dabc481e.tar.gz
chromium_src-ed3fb034eb4b7da69bbc4f3e3da47093dabc481e.tar.bz2
Extract load times from WebDataSource. Move them to NavigationState.
Move PasswordForm into the webkit_glue namespace. TEST=none BUG=10041 R=brettw Review URL: http://codereview.chromium.org/126190 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@18515 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/glue/password_form.h')
-rw-r--r--webkit/glue/password_form.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/webkit/glue/password_form.h b/webkit/glue/password_form.h
index 2d88343..df41be8 100644
--- a/webkit/glue/password_form.h
+++ b/webkit/glue/password_form.h
@@ -11,6 +11,8 @@
#include "base/time.h"
#include "googleurl/src/gurl.h"
+namespace webkit_glue {
+
// The PasswordForm struct encapsulates information about a login form,
// which can be an HTML form or a dialog with username/password text fields.
//
@@ -143,4 +145,6 @@ struct PasswordForm {
// Map username to PasswordForm* for convenience. See password_form_manager.h.
typedef std::map<std::wstring, PasswordForm*> PasswordFormMap;
+} // namespace webkit_glue
+
#endif // WEBKIT_GLUE_PASSWORD_FORM_H__