diff options
author | darin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-06-16 19:50:56 +0000 |
---|---|---|
committer | darin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-06-16 19:50:56 +0000 |
commit | ed3fb034eb4b7da69bbc4f3e3da47093dabc481e (patch) | |
tree | d08b2837ab8b05b98fef6990edd26a9d00465589 /chrome/common | |
parent | 5eb55c2f42f70fe544a04d200cdd059377d310f7 (diff) | |
download | chromium_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 'chrome/common')
-rw-r--r-- | chrome/common/render_messages.h | 6 | ||||
-rw-r--r-- | chrome/common/render_messages_internal.h | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/chrome/common/render_messages.h b/chrome/common/render_messages.h index 9ccce61..fd3e5eb 100644 --- a/chrome/common/render_messages.h +++ b/chrome/common/render_messages.h @@ -115,7 +115,7 @@ struct ViewHostMsg_FrameNavigate_Params { std::string searchable_form_encoding; // See password_form.h. - PasswordForm password_form; + webkit_glue::PasswordForm password_form; // Information regarding the security of the connection (empty if the // connection was not secure). @@ -664,8 +664,8 @@ struct ParamTraits<ViewMsg_Navigate_Params> { // Traits for PasswordForm_Params structure to pack/unpack. template <> -struct ParamTraits<PasswordForm> { - typedef PasswordForm param_type; +struct ParamTraits<webkit_glue::PasswordForm> { + typedef webkit_glue::PasswordForm param_type; static void Write(Message* m, const param_type& p) { WriteParam(m, p.signon_realm); WriteParam(m, p.origin); diff --git a/chrome/common/render_messages_internal.h b/chrome/common/render_messages_internal.h index abd7b7b..9904bd0 100644 --- a/chrome/common/render_messages_internal.h +++ b/chrome/common/render_messages_internal.h @@ -981,7 +981,7 @@ IPC_BEGIN_MESSAGES(ViewHost) // Notification that password forms have been seen that are candidates for // filling/submitting by the password manager IPC_MESSAGE_ROUTED1(ViewHostMsg_PasswordFormsSeen, - std::vector<PasswordForm> /* forms */) + std::vector<webkit_glue::PasswordForm> /* forms */) // Notification that a form has been submitted. The user hit the button. IPC_MESSAGE_ROUTED1(ViewHostMsg_AutofillFormSubmitted, |