| Index: chrome/browser/ui/browser_window.h
|
| diff --git a/chrome/browser/ui/browser_window.h b/chrome/browser/ui/browser_window.h
|
| index 508249ae1f66626461f7897e58cfe4fbc0d72290..3d8cc8653e13aa2a8c65763d8c52a33120fee8ac 100644
|
| --- a/chrome/browser/ui/browser_window.h
|
| +++ b/chrome/browser/ui/browser_window.h
|
| @@ -29,6 +29,9 @@ class TemplateURL;
|
| class ToolbarView;
|
| #endif
|
|
|
| +namespace autofill {
|
| +class PasswordGenerator;
|
| +}
|
| namespace content {
|
| class WebContents;
|
| struct NativeWebKeyboardEvent;
|
| @@ -361,7 +364,9 @@ class BrowserWindow : public BaseWindow {
|
| // Show bubble for password generation positioned relative to |rect|. A stub
|
| // implementation is provided since this feature is currently only available
|
| // for Windows.
|
| - virtual void ShowPasswordGenerationBubble(const gfx::Rect& rect) {}
|
| + virtual void ShowPasswordGenerationBubble(
|
| + const gfx::Rect& rect,
|
| + const autofill::PasswordGenerator& password_generator) {}
|
|
|
| protected:
|
| friend void browser::CloseAllBrowsers();
|
|
|