| 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 #include "chrome/browser/ui/cocoa/passwords/manage_passwords_controller_test.h" | 5 #include "chrome/browser/ui/cocoa/passwords/base_passwords_controller_test.h" |
| 6 | 6 |
| 7 #include "chrome/browser/ui/passwords/manage_passwords_bubble_model.h" | 7 #include "chrome/browser/ui/passwords/manage_passwords_bubble_model.h" |
| 8 #include "chrome/browser/ui/passwords/manage_passwords_ui_controller_mock.h" | 8 #include "chrome/browser/ui/passwords/manage_passwords_ui_controller_mock.h" |
| 9 #include "content/public/test/web_contents_tester.h" | 9 #include "content/public/test/web_contents_tester.h" |
| 10 | 10 |
| 11 ManagePasswordsControllerTest:: | 11 ManagePasswordsControllerTest:: |
| 12 ManagePasswordsControllerTest() { | 12 ManagePasswordsControllerTest() { |
| 13 } | 13 } |
| 14 | 14 |
| 15 ManagePasswordsControllerTest:: | 15 ManagePasswordsControllerTest:: |
| (...skipping 21 matching lines...) Expand all Loading... |
| 37 | 37 |
| 38 @implementation ContentViewDelegateMock | 38 @implementation ContentViewDelegateMock |
| 39 | 39 |
| 40 @synthesize dismissed = _dismissed; | 40 @synthesize dismissed = _dismissed; |
| 41 | 41 |
| 42 - (void)viewShouldDismiss { | 42 - (void)viewShouldDismiss { |
| 43 _dismissed = YES; | 43 _dismissed = YES; |
| 44 } | 44 } |
| 45 | 45 |
| 46 @end | 46 @end |
| OLD | NEW |