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

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

Issue 707173004: Refactor Autofill for out of process iframes (OOPIF). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: mem leak Created 6 years 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.cc
diff --git a/components/password_manager/core/browser/password_generation_manager.cc b/components/password_manager/core/browser/password_generation_manager.cc
index 18e119a846dc21315eebd406e1067e384a783161..577725064f562db993158e0e58d03e59d01fc03e 100644
--- a/components/password_manager/core/browser/password_generation_manager.cc
+++ b/components/password_manager/core/browser/password_generation_manager.cc
@@ -15,9 +15,10 @@
namespace password_manager {
PasswordGenerationManager::PasswordGenerationManager(
- PasswordManagerClient* client)
- : client_(client),
- driver_(client->GetDriver()) {}
+ PasswordManagerClient* client,
+ PasswordManagerDriver* driver)
+ : client_(client), driver_(driver) {
+}
PasswordGenerationManager::~PasswordGenerationManager() {}

Powered by Google App Engine
This is Rietveld 408576698