| Index: chrome/browser/ui/cocoa/passwords/confirmation_password_saved_view_controller.h
|
| diff --git a/chrome/browser/ui/cocoa/passwords/confirmation_password_saved_view_controller.h b/chrome/browser/ui/cocoa/passwords/confirmation_password_saved_view_controller.h
|
| index 6fadc63943222e353457f7c2addde7a37af7ad34..0f9b5b268d15d13c965108ff44e14d682abda017 100644
|
| --- a/chrome/browser/ui/cocoa/passwords/confirmation_password_saved_view_controller.h
|
| +++ b/chrome/browser/ui/cocoa/passwords/confirmation_password_saved_view_controller.h
|
| @@ -11,21 +11,17 @@
|
| #import "chrome/browser/ui/cocoa/passwords/base_passwords_content_view_controller.h"
|
|
|
| @class HyperlinkTextView;
|
| -class ManagePasswordsBubbleModel;
|
|
|
| // Manages the view that confirms that the generated password was saved.
|
| -@interface ManagePasswordsBubbleConfirmationViewController
|
| - : ManagePasswordsBubbleContentViewController<NSTextViewDelegate> {
|
| +@interface ConfirmationPasswordSavedViewController
|
| + : BasePasswordsContentViewController<NSTextViewDelegate> {
|
| @private
|
| - ManagePasswordsBubbleModel* model_; // weak
|
| base::scoped_nsobject<HyperlinkTextView> confirmationText_;
|
| base::scoped_nsobject<NSButton> okButton_;
|
| }
|
| -- (id)initWithModel:(ManagePasswordsBubbleModel*)model
|
| - delegate:(id<ManagePasswordsBubbleContentViewDelegate>)delegate;
|
| @end
|
|
|
| -@interface ManagePasswordsBubbleConfirmationViewController (Testing)
|
| +@interface ConfirmationPasswordSavedViewController (Testing)
|
| @property(readonly) HyperlinkTextView* confirmationText;
|
| @property(readonly) NSButton* okButton;
|
| @end
|
|
|