OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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/options_util.h" | 5 #include "components/autofill/core/browser/options_util.h" |
6 | 6 |
7 #include "base/prefs/pref_service.h" | |
8 #include "components/autofill/core/browser/personal_data_manager.h" | 7 #include "components/autofill/core/browser/personal_data_manager.h" |
9 #include "components/autofill/core/common/autofill_pref_names.h" | 8 #include "components/autofill/core/common/autofill_pref_names.h" |
10 #include "components/sync_driver/sync_service.h" | 9 #include "components/sync_driver/sync_service.h" |
11 | 10 |
12 namespace autofill { | 11 namespace autofill { |
13 | 12 |
14 bool WalletIntegrationAvailable( | 13 bool WalletIntegrationAvailable( |
15 sync_driver::SyncService* sync_service, | 14 sync_driver::SyncService* sync_service, |
16 const PrefService& pref_service, | |
17 const PersonalDataManager& personal_data_manager) { | 15 const PersonalDataManager& personal_data_manager) { |
18 if (!(sync_service && sync_service->CanSyncStart() && | 16 if (!(sync_service && sync_service->CanSyncStart() && |
19 sync_service->GetPreferredDataTypes().Has(syncer::AUTOFILL_PROFILE))) { | 17 sync_service->GetPreferredDataTypes().Has(syncer::AUTOFILL_PROFILE))) { |
20 return false; | 18 return false; |
21 } | 19 } |
22 | 20 |
23 if (!personal_data_manager.IsExperimentalWalletIntegrationEnabled()) | 21 return personal_data_manager.IsExperimentalWalletIntegrationEnabled(); |
24 return false; | |
25 | |
26 // If the user is signed in and the feature is enabled, but no data is being | |
27 // synced, hide the option. The user doesn't have a Wallet account. If the | |
28 // feature is disabled, we can't know, so show the checkbox. | |
29 if (!pref_service.GetBoolean(prefs::kAutofillWalletImportEnabled)) | |
30 return true; | |
31 | |
32 // If wallet is preferred but we haven't gotten the sync data yet, we don't | |
33 // know, so show the checkbox. | |
34 if (!sync_service->GetActiveDataTypes().Has(syncer::AUTOFILL_WALLET_DATA)) | |
35 return true; | |
36 | |
37 return personal_data_manager.HasServerData(); | |
38 } | 22 } |
39 | 23 |
40 } // namespace autofill | 24 } // namespace autofill |
OLD | NEW |