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

Unified Diff: chrome/browser/ui/cocoa/autofill/password_generation_popup_view_cocoa.h

Issue 308833002: [Mac] Password generation: Make "saved passwords" a hyperlink. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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/cocoa/autofill/password_generation_popup_view_cocoa.h
diff --git a/chrome/browser/ui/cocoa/autofill/password_generation_popup_view_cocoa.h b/chrome/browser/ui/cocoa/autofill/password_generation_popup_view_cocoa.h
index bdf6e7ecd1b1cb2d93db02d987f70f6cf2c41dcb..6fd7a4ca96b21e412b4c2e3a233bdb9986fcac59 100644
--- a/chrome/browser/ui/cocoa/autofill/password_generation_popup_view_cocoa.h
+++ b/chrome/browser/ui/cocoa/autofill/password_generation_popup_view_cocoa.h
@@ -14,15 +14,18 @@ namespace autofill {
class AutofillPopupController;
} // namespace autofill
+@class HyperlinkTextView;
+
// Draws the native password generation popup view on Mac.
-@interface PasswordGenerationPopupViewCocoa : AutofillPopupBaseViewCocoa {
+@interface PasswordGenerationPopupViewCocoa
+ : AutofillPopupBaseViewCocoa <NSTextViewDelegate> {
@private
// The cross-platform controller for this view.
__weak autofill::PasswordGenerationPopupController* controller_;
- __weak NSTextField* passwordField_;
- __weak NSTextField* passwordSubtextField_;
- __weak NSTextField* helpTextField_;
+ __weak NSTextView* passwordView_;
+ __weak NSTextView* passwordSubtextView_;
+ __weak HyperlinkTextView* helpTextView_;
}
// Designated initializer.

Powered by Google App Engine
This is Rietveld 408576698