| Index: chrome/browser/ui/cocoa/passwords/manage_passwords_bubble_pending_view_controller.h
|
| diff --git a/chrome/browser/ui/cocoa/passwords/manage_passwords_bubble_pending_view_controller.h b/chrome/browser/ui/cocoa/passwords/manage_passwords_bubble_pending_view_controller.h
|
| index b5add01194526cec33b55017619becc78a53c3b9..3ae40933aa35221bd9d84437848f3e69fd451b23 100644
|
| --- a/chrome/browser/ui/cocoa/passwords/manage_passwords_bubble_pending_view_controller.h
|
| +++ b/chrome/browser/ui/cocoa/passwords/manage_passwords_bubble_pending_view_controller.h
|
| @@ -10,6 +10,8 @@
|
| #include "base/mac/scoped_nsobject.h"
|
| #import "chrome/browser/ui/cocoa/passwords/manage_passwords_bubble_content_view_controller.h"
|
|
|
| +@class HyperlinkTextView;
|
| +
|
| namespace ui {
|
| class ComboboxModel;
|
| } // namespace ui
|
| @@ -30,11 +32,12 @@ class ManagePasswordsBubbleModel;
|
|
|
| // Manages the view that offers to save the user's password.
|
| @interface ManagePasswordsBubblePendingViewController
|
| - : ManagePasswordsBubbleContentViewController {
|
| + : ManagePasswordsBubbleContentViewController<NSTextViewDelegate> {
|
| @private
|
| ManagePasswordsBubbleModel* model_; // weak
|
| base::scoped_nsobject<NSButton> saveButton_;
|
| base::scoped_nsobject<BubbleCombobox> nopeButton_;
|
| + base::scoped_nsobject<HyperlinkTextView> titleView_;
|
| base::scoped_nsobject<ManagePasswordItemViewController> passwordItem_;
|
| }
|
| - (id)initWithModel:(ManagePasswordsBubbleModel*)model
|
|
|