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_CONTROLLER_TEST_H_ | 5 #ifndef CHROME_BROWSER_UI_COCOA_PASSWORDS_BASE_PASSWORDS_CONTROLLER_TEST_H_ |
6 #define CHROME_BROWSER_UI_COCOA_PASSWORDS_MANAGE_PASSWORDS_CONTROLLER_TEST_H_ | 6 #define CHROME_BROWSER_UI_COCOA_PASSWORDS_BASE_PASSWORDS_CONTROLLER_TEST_H_ |
7 | 7 |
8 #include "chrome/browser/ui/cocoa/cocoa_profile_test.h" | 8 #include "chrome/browser/ui/cocoa/cocoa_profile_test.h" |
9 #include "chrome/browser/ui/cocoa/cocoa_test_helper.h" | 9 #include "chrome/browser/ui/cocoa/cocoa_test_helper.h" |
10 #import "chrome/browser/ui/cocoa/passwords/manage_passwords_bubble_content_view_
controller.h" | 10 #import "chrome/browser/ui/cocoa/passwords/base_passwords_content_view_controlle
r.h" |
11 | 11 |
12 namespace content { | 12 namespace content { |
13 class WebContents; | 13 class WebContents; |
14 } // namespace content | 14 } // namespace content |
15 | 15 |
16 class ManagePasswordsUIControllerMock; | 16 class ManagePasswordsUIControllerMock; |
17 class ManagePasswordsBubbleModel; | 17 class ManagePasswordsBubbleModel; |
18 | 18 |
19 class ManagePasswordsControllerTest : public CocoaProfileTest { | 19 class ManagePasswordsControllerTest : public CocoaProfileTest { |
20 public: | 20 public: |
(...skipping 12 matching lines...) Expand all Loading... |
33 | 33 |
34 // Helper delegate for testing the views of the password management bubble. | 34 // Helper delegate for testing the views of the password management bubble. |
35 @interface ContentViewDelegateMock | 35 @interface ContentViewDelegateMock |
36 : NSObject<ManagePasswordsBubbleContentViewDelegate> { | 36 : NSObject<ManagePasswordsBubbleContentViewDelegate> { |
37 @private | 37 @private |
38 BOOL _dismissed; | 38 BOOL _dismissed; |
39 } | 39 } |
40 @property(readonly, nonatomic) BOOL dismissed; | 40 @property(readonly, nonatomic) BOOL dismissed; |
41 @end | 41 @end |
42 | 42 |
43 #endif // CHROME_BROWSER_UI_COCOA_PASSWORDS_MANAGE_PASSWORDS_CONTROLLER_TEST_H_ | 43 #endif // CHROME_BROWSER_UI_COCOA_PASSWORDS_BASE_PASSWORDS_CONTROLLER_TEST_H_ |
OLD | NEW |