| 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 "components/autofill/core/browser/test_autofill_client.h" | 5 #include "components/autofill/core/browser/test_autofill_client.h" |
| 6 #if !defined(OS_ANDROID) | 6 #if !defined(OS_ANDROID) |
| 7 #include "components/autofill/core/browser/ui/mock_save_card_bubble_controller.h
" | 7 #include "components/autofill/core/browser/ui/mock_save_card_bubble_controller.h
" |
| 8 #endif | 8 #endif |
| 9 | 9 |
| 10 #include "components/autofill/core/browser/webdata/autofill_webdata_service.h" | 10 #include "components/autofill/core/browser/webdata/autofill_webdata_service.h" |
| (...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 138 } | 138 } |
| 139 | 139 |
| 140 bool TestAutofillClient::ShouldShowSigninPromo() { | 140 bool TestAutofillClient::ShouldShowSigninPromo() { |
| 141 return false; | 141 return false; |
| 142 } | 142 } |
| 143 | 143 |
| 144 void TestAutofillClient::StartSigninFlow() {} | 144 void TestAutofillClient::StartSigninFlow() {} |
| 145 | 145 |
| 146 void TestAutofillClient::ShowHttpNotSecureExplanation() {} | 146 void TestAutofillClient::ShowHttpNotSecureExplanation() {} |
| 147 | 147 |
| 148 void TestAutofillClient::ShowPasswordsSettingsPage() {} |
| 149 |
| 148 } // namespace autofill | 150 } // namespace autofill |
| OLD | NEW |