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

Unified Diff: components/password_manager/core/browser/password_generation_manager_unittest.cc

Issue 707173004: Refactor Autofill for out of process iframes (OOPIF). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 1 month 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: components/password_manager/core/browser/password_generation_manager_unittest.cc
diff --git a/components/password_manager/core/browser/password_generation_manager_unittest.cc b/components/password_manager/core/browser/password_generation_manager_unittest.cc
index e67620f36a9c60b4ce6502d03a93e5f06023f4f5..5ea89b96e6b6418a95d7c99de7c4bb07760ad3dd 100644
--- a/components/password_manager/core/browser/password_generation_manager_unittest.cc
+++ b/components/password_manager/core/browser/password_generation_manager_unittest.cc
@@ -32,9 +32,9 @@ namespace {
class TestPasswordManagerDriver : public StubPasswordManagerDriver {
public:
TestPasswordManagerDriver(PasswordManagerClient* client)
- : password_manager_(client),
- password_generation_manager_(client),
- password_autofill_manager_(client, NULL),
+ : password_manager_(client, this),
+ password_generation_manager_(client, this),
+ password_autofill_manager_(client, this, NULL),
is_off_the_record_(false) {}
~TestPasswordManagerDriver() override {}

Powered by Google App Engine
This is Rietveld 408576698