diff options
author | isherman@chromium.org <isherman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-21 14:32:00 +0000 |
---|---|---|
committer | isherman@chromium.org <isherman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-21 14:32:00 +0000 |
commit | 26ac0cf5dc3eb77d4348d12357310cedb7b5b58a (patch) | |
tree | 7fb98df1e9cf3071bf8347ada49454f931c4bef1 /android_webview | |
parent | ca8cc70b2de822b939f87effc7c2b83bac280a44 (diff) | |
download | chromium_src-26ac0cf5dc3eb77d4348d12357310cedb7b5b58a.zip chromium_src-26ac0cf5dc3eb77d4348d12357310cedb7b5b58a.tar.gz chromium_src-26ac0cf5dc3eb77d4348d12357310cedb7b5b58a.tar.bz2 |
[Autofill] Remove the "Disable native Autofill UI" flag.
BUG=51644
TEST=none
R=estade@chromium.org
Review URL: https://chromiumcodereview.appspot.com/17052008
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@207812 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'android_webview')
-rw-r--r-- | android_webview/native/aw_contents.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/android_webview/native/aw_contents.cc b/android_webview/native/aw_contents.cc index f281e88..98c4e44 100644 --- a/android_webview/native/aw_contents.cc +++ b/android_webview/native/aw_contents.cc @@ -205,8 +205,7 @@ void AwContents::InitAutofillIfNecessary(bool enabled) { AwBrowserContext::FromWebContents(web_contents)-> CreateAutofillManagerDelegate(enabled), l10n_util::GetDefaultLocale(), - AutofillManager::DISABLE_AUTOFILL_DOWNLOAD_MANAGER, - true); + AutofillManager::DISABLE_AUTOFILL_DOWNLOAD_MANAGER); } AwContents::~AwContents() { |