diff options
author | avi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-10 22:18:23 +0000 |
---|---|---|
committer | avi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-10 22:18:23 +0000 |
commit | 4bf33838b4d3332d995edd6fc483345d560fb7c0 (patch) | |
tree | de8c66cd2e227daa0b9e860cf617cff1df370ab6 /android_webview/lib | |
parent | a2edd8c794ce6337b590490a7dc02cb902658b7a (diff) | |
download | chromium_src-4bf33838b4d3332d995edd6fc483345d560fb7c0.zip chromium_src-4bf33838b4d3332d995edd6fc483345d560fb7c0.tar.gz chromium_src-4bf33838b4d3332d995edd6fc483345d560fb7c0.tar.bz2 |
Switch AutofillExternalDelegate to use WebContentsUserData.
BUG=107201
TEST=no visible change
Review URL: https://chromiumcodereview.appspot.com/10993091
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@161214 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'android_webview/lib')
-rw-r--r-- | android_webview/lib/main/webview_stubs.cc | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/android_webview/lib/main/webview_stubs.cc b/android_webview/lib/main/webview_stubs.cc index 4a8f894..50179d2 100644 --- a/android_webview/lib/main/webview_stubs.cc +++ b/android_webview/lib/main/webview_stubs.cc @@ -18,13 +18,12 @@ TabAndroid* TabAndroid::FromWebContents(content::WebContents* web_contents) { } // static -AutofillExternalDelegate* AutofillExternalDelegate::Create( - TabContents* tab_contents, - AutofillManager* manager) { +void AutofillExternalDelegate::CreateForWebContentsAndManager( + content::WebContents* web_contents, + AutofillManager* autofill_manager) { // We don't need to return a real AutofillExternalDelegate yet. // Eventually, WebView will need an implementation (probably shared with // Chrome). - return NULL; } // static |