| Index: chrome/browser/password_manager/password_store_win_unittest.cc
|
| diff --git a/chrome/browser/password_manager/password_store_win_unittest.cc b/chrome/browser/password_manager/password_store_win_unittest.cc
|
| index c5a98bd3ec925a0772290f9e6efa71e64b1beb66..b05b468027c762d629e2037b89c948cb695c9e41 100644
|
| --- a/chrome/browser/password_manager/password_store_win_unittest.cc
|
| +++ b/chrome/browser/password_manager/password_store_win_unittest.cc
|
| @@ -29,12 +29,12 @@
|
| #include "testing/gmock/include/gmock/gmock.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
|
|
| +using autofill::PasswordForm;
|
| using base::WaitableEvent;
|
| using content::BrowserThread;
|
| using testing::_;
|
| using testing::DoAll;
|
| using testing::WithArg;
|
| -using content::PasswordForm;
|
|
|
| namespace {
|
|
|
| @@ -42,9 +42,9 @@ class MockPasswordStoreConsumer : public PasswordStoreConsumer {
|
| public:
|
| MOCK_METHOD2(OnPasswordStoreRequestDone,
|
| void(CancelableRequestProvider::Handle,
|
| - const std::vector<content::PasswordForm*>&));
|
| + const std::vector<autofill::PasswordForm*>&));
|
| MOCK_METHOD1(OnGetPasswordStoreResults,
|
| - void(const std::vector<content::PasswordForm*>&));
|
| + void(const std::vector<autofill::PasswordForm*>&));
|
| };
|
|
|
| class MockWebDataServiceConsumer : public WebDataServiceConsumer {
|
|
|