summaryrefslogtreecommitdiffstats
path: root/chrome/browser/automation/testing_automation_provider.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/automation/testing_automation_provider.cc')
-rw-r--r--chrome/browser/automation/testing_automation_provider.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/chrome/browser/automation/testing_automation_provider.cc b/chrome/browser/automation/testing_automation_provider.cc
index 8943336a..4417e35 100644
--- a/chrome/browser/automation/testing_automation_provider.cc
+++ b/chrome/browser/automation/testing_automation_provider.cc
@@ -3400,7 +3400,7 @@ void TestingAutomationProvider::ImportSettings(Browser* browser,
namespace {
// Translates a dictionary password to a PasswordForm struct.
-webkit::forms::PasswordForm GetPasswordFormFromDict(
+content::PasswordForm GetPasswordFormFromDict(
const DictionaryValue& password_dict) {
// If the time is specified, change time to the specified time.
@@ -3440,7 +3440,7 @@ webkit::forms::PasswordForm GetPasswordFormFromDict(
GURL origin_gurl(origin_url_text);
GURL action_target(action_target_text);
- webkit::forms::PasswordForm password_form;
+ content::PasswordForm password_form;
password_form.signon_realm = signon_realm;
password_form.username_value = username_value;
password_form.password_value = password_value;
@@ -3479,7 +3479,7 @@ void TestingAutomationProvider::AddSavedPassword(
return;
}
- webkit::forms::PasswordForm new_password =
+ content::PasswordForm new_password =
GetPasswordFormFromDict(*password_dict);
// Use IMPLICIT_ACCESS since new passwords aren't added in incognito mode.
@@ -3525,7 +3525,7 @@ void TestingAutomationProvider::RemoveSavedPassword(
"Password must include a value for 'signon_realm.'");
return;
}
- webkit::forms::PasswordForm to_remove =
+ content::PasswordForm to_remove =
GetPasswordFormFromDict(*password_dict);
// Use EXPLICIT_ACCESS since passwords can be removed in incognito mode.