| 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/base_passwords_controller_test.h" | 5 #include "chrome/browser/ui/cocoa/passwords/base_passwords_controller_test.h" |
| 6 | 6 |
| 7 #include "base/memory/ptr_util.h" |
| 7 #include "base/strings/utf_string_conversions.h" | 8 #include "base/strings/utf_string_conversions.h" |
| 8 #include "chrome/browser/password_manager/password_store_factory.h" | 9 #include "chrome/browser/password_manager/password_store_factory.h" |
| 9 #include "components/password_manager/core/browser/mock_password_store.h" | 10 #include "components/password_manager/core/browser/mock_password_store.h" |
| 10 #include "components/password_manager/core/browser/password_manager_test_utils.h
" | 11 #include "components/password_manager/core/browser/password_manager_test_utils.h
" |
| 11 #include "content/public/browser/web_contents.h" | 12 #include "content/public/browser/web_contents.h" |
| 12 #include "content/public/test/web_contents_tester.h" | 13 #include "content/public/test/web_contents_tester.h" |
| 13 | 14 |
| 14 namespace { | 15 namespace { |
| 15 constexpr char kSiteOrigin[] = "http://example.com/login"; | 16 constexpr char kSiteOrigin[] = "http://example.com/login"; |
| 16 } | 17 } |
| (...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 @synthesize dismissed = _dismissed; | 115 @synthesize dismissed = _dismissed; |
| 115 | 116 |
| 116 - (void)viewShouldDismiss { | 117 - (void)viewShouldDismiss { |
| 117 _dismissed = YES; | 118 _dismissed = YES; |
| 118 } | 119 } |
| 119 | 120 |
| 120 - (void)refreshBubble { | 121 - (void)refreshBubble { |
| 121 } | 122 } |
| 122 | 123 |
| 123 @end | 124 @end |
| OLD | NEW |