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

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

Issue 65953002: [Autofill] Rename autofill_common_test -> autofill_test_utils (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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 20 matching lines...) Expand all
31 #include "chrome/browser/sync/glue/generic_change_processor.h" 31 #include "chrome/browser/sync/glue/generic_change_processor.h"
32 #include "chrome/browser/sync/glue/shared_change_processor.h" 32 #include "chrome/browser/sync/glue/shared_change_processor.h"
33 #include "chrome/browser/sync/profile_sync_components_factory.h" 33 #include "chrome/browser/sync/profile_sync_components_factory.h"
34 #include "chrome/browser/sync/profile_sync_service.h" 34 #include "chrome/browser/sync/profile_sync_service.h"
35 #include "chrome/browser/sync/profile_sync_service_factory.h" 35 #include "chrome/browser/sync/profile_sync_service_factory.h"
36 #include "chrome/browser/sync/profile_sync_test_util.h" 36 #include "chrome/browser/sync/profile_sync_test_util.h"
37 #include "chrome/browser/sync/test_profile_sync_service.h" 37 #include "chrome/browser/sync/test_profile_sync_service.h"
38 #include "chrome/browser/webdata/autocomplete_syncable_service.h" 38 #include "chrome/browser/webdata/autocomplete_syncable_service.h"
39 #include "chrome/browser/webdata/autofill_profile_syncable_service.h" 39 #include "chrome/browser/webdata/autofill_profile_syncable_service.h"
40 #include "chrome/browser/webdata/web_data_service_factory.h" 40 #include "chrome/browser/webdata/web_data_service_factory.h"
41 #include "components/autofill/core/browser/autofill_common_test.h" 41 #include "components/autofill/core/browser/autofill_test_utils.h"
42 #include "components/autofill/core/browser/personal_data_manager.h" 42 #include "components/autofill/core/browser/personal_data_manager.h"
43 #include "components/autofill/core/browser/webdata/autofill_change.h" 43 #include "components/autofill/core/browser/webdata/autofill_change.h"
44 #include "components/autofill/core/browser/webdata/autofill_entry.h" 44 #include "components/autofill/core/browser/webdata/autofill_entry.h"
45 #include "components/autofill/core/browser/webdata/autofill_table.h" 45 #include "components/autofill/core/browser/webdata/autofill_table.h"
46 #include "components/autofill/core/browser/webdata/autofill_webdata_service.h" 46 #include "components/autofill/core/browser/webdata/autofill_webdata_service.h"
47 #include "components/webdata/common/web_data_service_test_util.h" 47 #include "components/webdata/common/web_data_service_test_util.h"
48 #include "components/webdata/common/web_database.h" 48 #include "components/webdata/common/web_database.h"
49 #include "content/public/test/test_browser_thread.h" 49 #include "content/public/test/test_browser_thread.h"
50 #include "google_apis/gaia/gaia_constants.h" 50 #include "google_apis/gaia/gaia_constants.h"
51 #include "sync/internal_api/public/base/model_type.h" 51 #include "sync/internal_api/public/base/model_type.h"
(...skipping 1352 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