Index: chrome/browser/automation/testing_automation_provider.cc |
diff --git a/chrome/browser/automation/testing_automation_provider.cc b/chrome/browser/automation/testing_automation_provider.cc |
index 95480cf819ffabfab6d62302e324cb523c377bde..d5b262dfe11bd8b2ac2c2251168039bfe95f641b 100644 |
--- a/chrome/browser/automation/testing_automation_provider.cc |
+++ b/chrome/browser/automation/testing_automation_provider.cc |
@@ -3757,7 +3757,7 @@ void TestingAutomationProvider::ImportSettings(Browser* browser, |
namespace { |
// Translates a dictionary password to a PasswordForm struct. |
-webkit_glue::PasswordForm GetPasswordFormFromDict( |
+webkit::forms::PasswordForm GetPasswordFormFromDict( |
const DictionaryValue& password_dict) { |
// If the time is specified, change time to the specified time. |
@@ -3797,7 +3797,7 @@ webkit_glue::PasswordForm GetPasswordFormFromDict( |
GURL origin_gurl(origin_url_text); |
GURL action_target(action_target_text); |
- webkit_glue::PasswordForm password_form; |
+ webkit::forms::PasswordForm password_form; |
password_form.signon_realm = signon_realm; |
password_form.username_value = username_value; |
password_form.password_value = password_value; |
@@ -3836,7 +3836,7 @@ void TestingAutomationProvider::AddSavedPassword( |
return; |
} |
- webkit_glue::PasswordForm new_password = |
+ webkit::forms::PasswordForm new_password = |
GetPasswordFormFromDict(*password_dict); |
// Use IMPLICIT_ACCESS since new passwords aren't added in incognito mode. |
@@ -3882,7 +3882,7 @@ void TestingAutomationProvider::RemoveSavedPassword( |
"Password must include a value for 'signon_realm.'"); |
return; |
} |
- webkit_glue::PasswordForm to_remove = |
+ webkit::forms::PasswordForm to_remove = |
GetPasswordFormFromDict(*password_dict); |
// Use EXPLICIT_ACCESS since passwords can be removed in incognito mode. |