OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_BROWSER_UI_COCOA_PASSWORDS_MANAGE_PASSWORDS_BUBBLE_MANAGE_VIEW_CO
NTROLLER_H_ | 5 #ifndef CHROME_BROWSER_UI_COCOA_PASSWORDS_MANAGE_PASSWORDS_VIEW_CONTROLLER_H_ |
6 #define CHROME_BROWSER_UI_COCOA_PASSWORDS_MANAGE_PASSWORDS_BUBBLE_MANAGE_VIEW_CO
NTROLLER_H_ | 6 #define CHROME_BROWSER_UI_COCOA_PASSWORDS_MANAGE_PASSWORDS_VIEW_CONTROLLER_H_ |
7 | 7 |
8 #import <Cocoa/Cocoa.h> | 8 #import <Cocoa/Cocoa.h> |
9 | 9 |
10 #include "base/mac/scoped_nsobject.h" | 10 #include "base/mac/scoped_nsobject.h" |
11 #import "chrome/browser/ui/cocoa/passwords/manage_passwords_bubble_content_view_
controller.h" | 11 #import "chrome/browser/ui/cocoa/passwords/base_passwords_content_view_controlle
r.h" |
12 | 12 |
13 class ManagePasswordsBubbleModel; | 13 class ManagePasswordsBubbleModel; |
14 @class PasswordsListViewController; | 14 @class PasswordsListViewController; |
15 | 15 |
16 // Informs the user that no passwords are stored for the current site. | 16 // Informs the user that no passwords are stored for the current site. |
17 @interface NoPasswordsView : NSTextField | 17 @interface NoPasswordsView : NSTextField |
18 - (id)initWithWidth:(CGFloat)width; | 18 - (id)initWithWidth:(CGFloat)width; |
19 @end | 19 @end |
20 | 20 |
21 // Manages the view that allows users to manage passwords for a site. | 21 // Manages the view that allows users to manage passwords for a site. |
(...skipping 10 matching lines...) Expand all Loading... |
32 delegate:(id<ManagePasswordsBubbleContentViewDelegate>)delegate; | 32 delegate:(id<ManagePasswordsBubbleContentViewDelegate>)delegate; |
33 @end | 33 @end |
34 | 34 |
35 @interface ManagePasswordsBubbleManageViewController (Testing) | 35 @interface ManagePasswordsBubbleManageViewController (Testing) |
36 @property(readonly) NSButton* doneButton; | 36 @property(readonly) NSButton* doneButton; |
37 @property(readonly) NSButton* manageButton; | 37 @property(readonly) NSButton* manageButton; |
38 @property(readonly) NoPasswordsView* noPasswordsView; | 38 @property(readonly) NoPasswordsView* noPasswordsView; |
39 @property(readonly) PasswordsListViewController* passwordsListController; | 39 @property(readonly) PasswordsListViewController* passwordsListController; |
40 @end | 40 @end |
41 | 41 |
42 #endif // CHROME_BROWSER_UI_COCOA_PASSWORDS_MANAGE_PASSWORDS_BUBBLE_MANAGE_VIEW
_CONTROLLER_H_ | 42 #endif // CHROME_BROWSER_UI_COCOA_PASSWORDS_MANAGE_PASSWORDS_VIEW_CONTROLLER_H_ |
OLD | NEW |