Index: chrome/browser/ui/gtk/browser_window_gtk.h |
diff --git a/chrome/browser/ui/gtk/browser_window_gtk.h b/chrome/browser/ui/gtk/browser_window_gtk.h |
index 5924cbeae9f910f79113f35c8bae9685da609842..c342f212aa16be6b9ce44e0d87fc34229c0eb465 100644 |
--- a/chrome/browser/ui/gtk/browser_window_gtk.h |
+++ b/chrome/browser/ui/gtk/browser_window_gtk.h |
@@ -40,6 +40,10 @@ class StatusBubbleGtk; |
class TabContentsContainerGtk; |
class TabStripGtk; |
+namespace autofill { |
+class PasswordGenerator; |
+} |
+ |
namespace extensions { |
class Extension; |
} |
@@ -170,7 +174,9 @@ class BrowserWindowGtk : public BrowserWindow, |
virtual void ShowAvatarBubble(content::WebContents* web_contents, |
const gfx::Rect& rect) OVERRIDE; |
virtual void ShowAvatarBubbleFromAvatarButton() OVERRIDE; |
- virtual void ShowPasswordGenerationBubble(const gfx::Rect& rect) OVERRIDE; |
+ virtual void ShowPasswordGenerationBubble( |
+ const gfx::Rect& rect, |
+ autofill::PasswordGenerator* password_generator) OVERRIDE; |
// Overridden from NotificationObserver: |
virtual void Observe(int type, |