Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(143)

Side by Side Diff: chrome/browser/sync/test/integration/single_client_wallet_sync_test.cc

Issue 2130453004: [Sync] Move //sync to //components/sync. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2015 The Chromium Authors. All rights reserved. 1 // Copyright (c) 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 "base/command_line.h" 5 #include "base/command_line.h"
6 #include "base/macros.h" 6 #include "base/macros.h"
7 #include "base/strings/utf_string_conversions.h" 7 #include "base/strings/utf_string_conversions.h"
8 #include "chrome/browser/chrome_notification_types.h" 8 #include "chrome/browser/chrome_notification_types.h"
9 #include "chrome/browser/sync/test/integration/autofill_helper.h" 9 #include "chrome/browser/sync/test/integration/autofill_helper.h"
10 #include "chrome/browser/sync/test/integration/profile_sync_service_harness.h" 10 #include "chrome/browser/sync/test/integration/profile_sync_service_harness.h"
11 #include "chrome/browser/sync/test/integration/single_client_status_change_check er.h" 11 #include "chrome/browser/sync/test/integration/single_client_status_change_check er.h"
12 #include "chrome/browser/sync/test/integration/sync_integration_test_util.h" 12 #include "chrome/browser/sync/test/integration/sync_integration_test_util.h"
13 #include "chrome/browser/sync/test/integration/sync_test.h" 13 #include "chrome/browser/sync/test/integration/sync_test.h"
14 #include "chrome/browser/web_data_service_factory.h" 14 #include "chrome/browser/web_data_service_factory.h"
15 #include "components/autofill/core/browser/credit_card.h" 15 #include "components/autofill/core/browser/credit_card.h"
16 #include "components/autofill/core/browser/field_types.h" 16 #include "components/autofill/core/browser/field_types.h"
17 #include "components/autofill/core/browser/personal_data_manager.h" 17 #include "components/autofill/core/browser/personal_data_manager.h"
18 #include "components/autofill/core/common/autofill_pref_names.h" 18 #include "components/autofill/core/common/autofill_pref_names.h"
19 #include "components/browser_sync/browser/profile_sync_service.h" 19 #include "components/browser_sync/browser/profile_sync_service.h"
20 #include "components/prefs/pref_service.h" 20 #include "components/prefs/pref_service.h"
21 #include "components/sync/base/model_type.h"
22 #include "components/sync/test/fake_server/fake_server_entity.h"
23 #include "components/sync/test/fake_server/unique_client_entity.h"
21 #include "content/public/browser/notification_service.h" 24 #include "content/public/browser/notification_service.h"
22 #include "sync/internal_api/public/base/model_type.h"
23 #include "sync/test/fake_server/fake_server_entity.h"
24 #include "sync/test/fake_server/unique_client_entity.h"
25 25
26 using autofill_helper::GetPersonalDataManager; 26 using autofill_helper::GetPersonalDataManager;
27 using sync_integration_test_util::AwaitCommitActivityCompletion; 27 using sync_integration_test_util::AwaitCommitActivityCompletion;
28 28
29 namespace { 29 namespace {
30 30
31 const char kDefaultCardID[] = "wallet entity ID"; 31 const char kDefaultCardID[] = "wallet entity ID";
32 const int kDefaultCardExpMonth = 8; 32 const int kDefaultCardExpMonth = 8;
33 const int kDefaultCardExpYear = 2087; 33 const int kDefaultCardExpYear = 2087;
34 const char kDefaultCardLastFour[] = "1234"; 34 const char kDefaultCardLastFour[] = "1234";
(...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after
183 std::vector<autofill::CreditCard*> cards = pdm->GetCreditCards(); 183 std::vector<autofill::CreditCard*> cards = pdm->GetCreditCards();
184 ASSERT_EQ(1uL, cards.size()); 184 ASSERT_EQ(1uL, cards.size());
185 185
186 // Turn off the wallet autofill pref, the card should be gone as a side 186 // Turn off the wallet autofill pref, the card should be gone as a side
187 // effect of the wallet data type controller noticing. 187 // effect of the wallet data type controller noticing.
188 GetProfile(0)->GetPrefs()->SetBoolean( 188 GetProfile(0)->GetPrefs()->SetBoolean(
189 autofill::prefs::kAutofillWalletImportEnabled, false); 189 autofill::prefs::kAutofillWalletImportEnabled, false);
190 cards = pdm->GetCreditCards(); 190 cards = pdm->GetCreditCards();
191 ASSERT_EQ(0uL, cards.size()); 191 ASSERT_EQ(0uL, cards.size());
192 } 192 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698