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

Side by Side Diff: chrome/browser/sync/profile_sync_service_autofill_unittest.cc

Issue 52713006: Parameterize the PrefService that PersonalDataManager uses. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Response to review, fix unit tests Created 7 years, 1 month 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 | Annotate | Revision Log
OLDNEW
1 // Copyright 2012 The Chromium Authors. All rights reserved. 1 // Copyright 2012 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 <set> 5 #include <set>
6 #include <string> 6 #include <string>
7 #include <vector> 7 #include <vector>
8 8
9 #include "testing/gtest/include/gtest/gtest.h" 9 #include "testing/gtest/include/gtest/gtest.h"
10 10
(...skipping 513 matching lines...) Expand 10 before | Expand all | Expand 10 after
524 profile_.get(), MockPersonalDataManagerService::Build)); 524 profile_.get(), MockPersonalDataManagerService::Build));
525 personal_data_manager_ = 525 personal_data_manager_ =
526 personal_data_manager_service->GetPersonalDataManager(); 526 personal_data_manager_service->GetPersonalDataManager();
527 527
528 token_service_ = static_cast<TokenService*>( 528 token_service_ = static_cast<TokenService*>(
529 TokenServiceFactory::GetInstance()->SetTestingFactoryAndUse( 529 TokenServiceFactory::GetInstance()->SetTestingFactoryAndUse(
530 profile_.get(), BuildTokenService)); 530 profile_.get(), BuildTokenService));
531 EXPECT_CALL(*personal_data_manager_, LoadProfiles()).Times(1); 531 EXPECT_CALL(*personal_data_manager_, LoadProfiles()).Times(1);
532 EXPECT_CALL(*personal_data_manager_, LoadCreditCards()).Times(1); 532 EXPECT_CALL(*personal_data_manager_, LoadCreditCards()).Times(1);
533 533
534 personal_data_manager_->Init(profile_.get()); 534 personal_data_manager_->Init(profile_.get(), profile_->GetPrefs());
535 535
536 web_data_service_->StartSyncableService(); 536 web_data_service_->StartSyncableService();
537 } 537 }
538 538
539 virtual void TearDown() OVERRIDE { 539 virtual void TearDown() OVERRIDE {
540 // Note: The tear down order is important. 540 // Note: The tear down order is important.
541 ProfileSyncServiceFactory::GetInstance()->SetTestingFactory( 541 ProfileSyncServiceFactory::GetInstance()->SetTestingFactory(
542 profile_.get(), NULL); 542 profile_.get(), NULL);
543 web_data_service_->ShutdownOnUIThread(); 543 web_data_service_->ShutdownOnUIThread();
544 web_data_service_->ShutdownSyncableService(); 544 web_data_service_->ShutdownSyncableService();
(...skipping 859 matching lines...) Expand 10 before | Expand all | Expand 10 after
1404 std::vector<AutofillEntry> sync_entries; 1404 std::vector<AutofillEntry> sync_entries;
1405 std::vector<AutofillProfile> sync_profiles; 1405 std::vector<AutofillProfile> sync_profiles;
1406 ASSERT_TRUE(GetAutofillEntriesFromSyncDB(&sync_entries, &sync_profiles)); 1406 ASSERT_TRUE(GetAutofillEntriesFromSyncDB(&sync_entries, &sync_profiles));
1407 EXPECT_EQ(3U, sync_entries.size()); 1407 EXPECT_EQ(3U, sync_entries.size());
1408 EXPECT_EQ(0U, sync_profiles.size()); 1408 EXPECT_EQ(0U, sync_profiles.size());
1409 for (size_t i = 0; i < sync_entries.size(); i++) { 1409 for (size_t i = 0; i < sync_entries.size(); i++) {
1410 DVLOG(1) << "Entry " << i << ": " << sync_entries[i].key().name() 1410 DVLOG(1) << "Entry " << i << ": " << sync_entries[i].key().name()
1411 << ", " << sync_entries[i].key().value(); 1411 << ", " << sync_entries[i].key().value();
1412 } 1412 }
1413 } 1413 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698