summaryrefslogtreecommitdiffstats
path: root/chrome/renderer
diff options
context:
space:
mode:
authorcsharp@chromium.org <csharp@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-07-03 15:04:40 +0000
committercsharp@chromium.org <csharp@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-07-03 15:04:40 +0000
commit6aec8932ddfb5771d227a2103e93b9e67de2170a (patch)
tree719004e8e0a67a9e13d3815cb5d5eb7886730164 /chrome/renderer
parent1f9fd547750a691719ec8ef27ce285c92d4f91e4 (diff)
downloadchromium_src-6aec8932ddfb5771d227a2103e93b9e67de2170a.zip
chromium_src-6aec8932ddfb5771d227a2103e93b9e67de2170a.tar.gz
chromium_src-6aec8932ddfb5771d227a2103e93b9e67de2170a.tar.bz2
[Autofill] Remove IsNativeUiEnabled
The native UI is now always on and the flag to revert to the old UI has been removed, so this will now always be true. TBR=isherman@chromium.org BUG=255625 Review URL: https://chromiumcodereview.appspot.com/18173006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@209984 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/renderer')
-rw-r--r--chrome/renderer/autofill/password_autofill_agent_browsertest.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/renderer/autofill/password_autofill_agent_browsertest.cc b/chrome/renderer/autofill/password_autofill_agent_browsertest.cc
index 5b03d59..dcc3574 100644
--- a/chrome/renderer/autofill/password_autofill_agent_browsertest.cc
+++ b/chrome/renderer/autofill/password_autofill_agent_browsertest.cc
@@ -65,7 +65,7 @@ class PasswordAutofillAgentTest : public ChromeRenderViewTest {
// protected.
void SimulateOnFillPasswordForm(
const PasswordFormFillData& fill_data) {
- AutofillMsg_FillPasswordForm msg(0, fill_data, false);
+ AutofillMsg_FillPasswordForm msg(0, fill_data);
password_autofill_->OnMessageReceived(msg);
}