Index: chrome/renderer/autofill/password_autofill_agent_browsertest.cc |
diff --git a/chrome/renderer/autofill/password_autofill_agent_browsertest.cc b/chrome/renderer/autofill/password_autofill_agent_browsertest.cc |
index 44de9220c0fbec16f42e858005272c3672285228..4efd93c03d58ed6d8a8e47c35ff258f590f14b5a 100644 |
--- a/chrome/renderer/autofill/password_autofill_agent_browsertest.cc |
+++ b/chrome/renderer/autofill/password_autofill_agent_browsertest.cc |
@@ -23,7 +23,7 @@ |
#include "third_party/WebKit/public/web/WebView.h" |
#include "ui/base/keycodes/keyboard_codes.h" |
-using content::PasswordForm; |
+using autofill::PasswordForm; |
using WebKit::WebDocument; |
using WebKit::WebElement; |
using WebKit::WebFrame; |
@@ -554,7 +554,7 @@ TEST_F(PasswordAutofillAgentTest, SendPasswordFormsTest) { |
const IPC::Message* message = render_thread_->sink() |
.GetFirstMessageMatching(AutofillHostMsg_PasswordFormsRendered::ID); |
EXPECT_TRUE(message); |
- Tuple1<std::vector<content::PasswordForm> > param; |
+ Tuple1<std::vector<autofill::PasswordForm> > param; |
AutofillHostMsg_PasswordFormsRendered::Read(message, ¶m); |
EXPECT_TRUE(param.a.size()); |