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

Unified Diff: chrome/browser/ui/views/frame/browser_view.h

Issue 10458018: This CL does the following: (1) Pass the max_length attribute to the password generator; (2) Update… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Make password generator independent of platforms. Created 8 years, 7 months 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/views/frame/browser_view.h
diff --git a/chrome/browser/ui/views/frame/browser_view.h b/chrome/browser/ui/views/frame/browser_view.h
index 27c974ad0604f91095693517aa2a20b5db6de844..24c5d9976eebc8bd95fa9e6f636857375c9f63c6 100644
--- a/chrome/browser/ui/views/frame/browser_view.h
+++ b/chrome/browser/ui/views/frame/browser_view.h
@@ -58,6 +58,10 @@ class JumpList;
class BrowserLauncherItemController;
#endif
+namespace autofill {
+class PasswordGenerator;
+}
+
namespace extensions {
class Extension;
}
@@ -318,7 +322,9 @@ class BrowserView : 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 BrowserWindowTesting:
virtual BookmarkBarView* GetBookmarkBarView() const OVERRIDE;

Powered by Google App Engine
This is Rietveld 408576698