| OLD | NEW |
| 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 18 matching lines...) Expand all Loading... |
| 29 #include "chrome/browser/sync/glue/autofill_profile_data_type_controller.h" | 29 #include "chrome/browser/sync/glue/autofill_profile_data_type_controller.h" |
| 30 #include "chrome/browser/sync/glue/data_type_controller.h" | 30 #include "chrome/browser/sync/glue/data_type_controller.h" |
| 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_change.h" | |
| 40 #include "chrome/browser/webdata/autofill_entry.h" | |
| 41 #include "chrome/browser/webdata/autofill_profile_syncable_service.h" | 39 #include "chrome/browser/webdata/autofill_profile_syncable_service.h" |
| 42 #include "chrome/browser/webdata/autofill_table.h" | |
| 43 #include "chrome/browser/webdata/autofill_web_data_service.h" | |
| 44 #include "chrome/browser/webdata/web_data_service_factory.h" | 40 #include "chrome/browser/webdata/web_data_service_factory.h" |
| 45 #include "chrome/browser/webdata/web_data_service_test_util.h" | 41 #include "chrome/browser/webdata/web_data_service_test_util.h" |
| 46 #include "chrome/browser/webdata/web_database.h" | |
| 47 #include "components/autofill/browser/autofill_common_test.h" | 42 #include "components/autofill/browser/autofill_common_test.h" |
| 48 #include "components/autofill/browser/personal_data_manager.h" | 43 #include "components/autofill/browser/personal_data_manager.h" |
| 44 #include "components/webdata/autofill/autofill_change.h" |
| 45 #include "components/webdata/autofill/autofill_entry.h" |
| 46 #include "components/webdata/autofill/autofill_table.h" |
| 47 #include "components/webdata/autofill/autofill_webdata_service.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" |
| 52 #include "sync/internal_api/public/read_node.h" | 52 #include "sync/internal_api/public/read_node.h" |
| 53 #include "sync/internal_api/public/read_transaction.h" | 53 #include "sync/internal_api/public/read_transaction.h" |
| 54 #include "sync/internal_api/public/write_node.h" | 54 #include "sync/internal_api/public/write_node.h" |
| 55 #include "sync/internal_api/public/write_transaction.h" | 55 #include "sync/internal_api/public/write_transaction.h" |
| 56 #include "sync/protocol/autofill_specifics.pb.h" | 56 #include "sync/protocol/autofill_specifics.pb.h" |
| 57 #include "sync/syncable/mutable_entry.h" | 57 #include "sync/syncable/mutable_entry.h" |
| 58 #include "sync/syncable/syncable_write_transaction.h" | 58 #include "sync/syncable/syncable_write_transaction.h" |
| (...skipping 1289 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1348 std::vector<AutofillEntry> sync_entries; | 1348 std::vector<AutofillEntry> sync_entries; |
| 1349 std::vector<AutofillProfile> sync_profiles; | 1349 std::vector<AutofillProfile> sync_profiles; |
| 1350 ASSERT_TRUE(GetAutofillEntriesFromSyncDB(&sync_entries, &sync_profiles)); | 1350 ASSERT_TRUE(GetAutofillEntriesFromSyncDB(&sync_entries, &sync_profiles)); |
| 1351 EXPECT_EQ(3U, sync_entries.size()); | 1351 EXPECT_EQ(3U, sync_entries.size()); |
| 1352 EXPECT_EQ(0U, sync_profiles.size()); | 1352 EXPECT_EQ(0U, sync_profiles.size()); |
| 1353 for (size_t i = 0; i < sync_entries.size(); i++) { | 1353 for (size_t i = 0; i < sync_entries.size(); i++) { |
| 1354 DVLOG(1) << "Entry " << i << ": " << sync_entries[i].key().name() | 1354 DVLOG(1) << "Entry " << i << ": " << sync_entries[i].key().name() |
| 1355 << ", " << sync_entries[i].key().value(); | 1355 << ", " << sync_entries[i].key().value(); |
| 1356 } | 1356 } |
| 1357 } | 1357 } |
| OLD | NEW |