summaryrefslogtreecommitdiffstats
path: root/webkit/glue/dom_operations.cc
diff options
context:
space:
mode:
authordarin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-10-23 19:58:58 +0000
committerdarin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-10-23 19:58:58 +0000
commit013b4d857912c902c725e9f102ee6ca6d3c6b545 (patch)
tree584a30281bcd6330b1f1d4a9516f3e5d54e27663 /webkit/glue/dom_operations.cc
parent96121f3e85fe5dc2ca05b40328273c53b297f7eb (diff)
downloadchromium_src-013b4d857912c902c725e9f102ee6ca6d3c6b545.zip
chromium_src-013b4d857912c902c725e9f102ee6ca6d3c6b545.tar.gz
chromium_src-013b4d857912c902c725e9f102ee6ca6d3c6b545.tar.bz2
Create a PasswordAutocompleteListener interface to de-couple WebView
from the password form fill data structures and related classes. R=yaar BUG=none TEST=none Review URL: http://codereview.chromium.org/332005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@29932 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/glue/dom_operations.cc')
-rw-r--r--webkit/glue/dom_operations.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/webkit/glue/dom_operations.cc b/webkit/glue/dom_operations.cc
index 1537e5c..f859ce4 100644
--- a/webkit/glue/dom_operations.cc
+++ b/webkit/glue/dom_operations.cc
@@ -37,7 +37,7 @@ MSVC_POP_WARNING();
#include "webkit/glue/dom_operations_private.h"
#include "webkit/glue/form_data.h"
#include "webkit/glue/glue_util.h"
-#include "webkit/glue/password_autocomplete_listener.h"
+#include "webkit/glue/password_autocomplete_listener_impl.h"
#include "webkit/glue/webframe_impl.h"
#include "webkit/glue/webview_impl.h"
@@ -351,7 +351,7 @@ void FillPasswordForm(WebView* view,
WebFrameImpl* webframe_impl = frame_loader_client->webframe();
webframe_impl->RegisterPasswordListener(
username_element,
- new PasswordAutocompleteListener(
+ new PasswordAutocompleteListenerImpl(
new HTMLInputDelegate(username_element),
new HTMLInputDelegate(password_element),
data));