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

Unified Diff: chrome/browser/ui/autofill/password_generation_popup_controller_impl.h

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: chrome/browser/ui/autofill/password_generation_popup_controller_impl.h
diff --git a/chrome/browser/ui/autofill/password_generation_popup_controller_impl.h b/chrome/browser/ui/autofill/password_generation_popup_controller_impl.h
index 238d362ce31f1966c07fb9858752e064e54ae0ce..d56b9dd1a3f0325502d8b175129f29eb0fb07e26 100644
--- a/chrome/browser/ui/autofill/password_generation_popup_controller_impl.h
+++ b/chrome/browser/ui/autofill/password_generation_popup_controller_impl.h
@@ -24,6 +24,7 @@ class WebContents;
namespace password_manager {
class PasswordManager;
+class PasswordManagerDriver;
}
namespace autofill {
@@ -52,6 +53,7 @@ class PasswordGenerationPopupControllerImpl
const PasswordForm& form,
int max_length,
password_manager::PasswordManager* password_manager,
+ password_manager::PasswordManagerDriver* driver,
PasswordGenerationPopupObserver* observer,
content::WebContents* web_contents,
gfx::NativeView container_view);
@@ -77,6 +79,7 @@ class PasswordGenerationPopupControllerImpl
const PasswordForm& form,
int max_length,
password_manager::PasswordManager* password_manager,
+ password_manager::PasswordManagerDriver* driver,
PasswordGenerationPopupObserver* observer,
content::WebContents* web_contents,
gfx::NativeView container_view);
@@ -121,6 +124,7 @@ class PasswordGenerationPopupControllerImpl
PasswordForm form_;
password_manager::PasswordManager* password_manager_;
+ password_manager::PasswordManagerDriver* driver_;
// May be NULL.
PasswordGenerationPopupObserver* observer_;

Powered by Google App Engine
This is Rietveld 408576698