Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(573)

Unified Diff: chrome/browser/password_manager/password_store_mac_unittest.cc

Issue 23742004: Move PasswordForm from //content to //autofill. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@move_password_form_conversion_utils
Patch Set: Rebase Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/password_manager/password_store_mac_unittest.cc
diff --git a/chrome/browser/password_manager/password_store_mac_unittest.cc b/chrome/browser/password_manager/password_store_mac_unittest.cc
index a04c2718998d6edf68eeef7da116c52fe309bf47..28fed75a9efcbb7b97119e5983f1177151145400 100644
--- a/chrome/browser/password_manager/password_store_mac_unittest.cc
+++ b/chrome/browser/password_manager/password_store_mac_unittest.cc
@@ -18,9 +18,9 @@
#include "content/public/test/test_browser_thread.h"
#include "crypto/mock_apple_keychain.h"
+using autofill::PasswordForm;
using content::BrowserThread;
using crypto::MockAppleKeychain;
-using content::PasswordForm;
using testing::_;
using testing::DoAll;
using testing::WithArg;
@@ -31,9 +31,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*>&));
};
ACTION(STLDeleteElements0) {

Powered by Google App Engine
This is Rietveld 408576698