Index: chrome/browser/ui/gtk/browser_window_gtk.cc |
diff --git a/chrome/browser/ui/gtk/browser_window_gtk.cc b/chrome/browser/ui/gtk/browser_window_gtk.cc |
index 76e5af1f2176762f0527e0394355fe330771fbb3..843a584a1a49adeaf896412fbc5d1d7fb28277f0 100644 |
--- a/chrome/browser/ui/gtk/browser_window_gtk.cc |
+++ b/chrome/browser/ui/gtk/browser_window_gtk.cc |
@@ -1280,6 +1280,7 @@ void BrowserWindowGtk::ShowAvatarBubbleFromAvatarButton() { |
void BrowserWindowGtk::ShowPasswordGenerationBubble( |
const gfx::Rect& rect, |
+ autofill::PasswordGenerator* password_generator, |
const webkit::forms::PasswordForm& form) { |
WebContents* web_contents = browser_->GetSelectedWebContents(); |
if (!web_contents || !web_contents->GetContentNativeView()) { |
@@ -1296,6 +1297,7 @@ void BrowserWindowGtk::ShowPasswordGenerationBubble( |
web_contents->GetContentNativeView(), |
browser()->profile(), |
web_contents->GetRenderViewHost(), |
+ password_generator, |
tab_contents->password_manager()); |
} |