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

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

Issue 12434004: Move remaining Autofill code to //components/autofill. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix long lines Created 7 years, 9 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 | 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
11 #include "base/bind.h" 11 #include "base/bind.h"
12 #include "base/bind_helpers.h" 12 #include "base/bind_helpers.h"
13 #include "base/callback.h" 13 #include "base/callback.h"
14 #include "base/compiler_specific.h" 14 #include "base/compiler_specific.h"
15 #include "base/location.h" 15 #include "base/location.h"
16 #include "base/memory/ref_counted.h" 16 #include "base/memory/ref_counted.h"
17 #include "base/memory/scoped_ptr.h" 17 #include "base/memory/scoped_ptr.h"
18 #include "base/message_loop.h" 18 #include "base/message_loop.h"
19 #include "base/string16.h" 19 #include "base/string16.h"
20 #include "base/synchronization/waitable_event.h" 20 #include "base/synchronization/waitable_event.h"
21 #include "base/time.h" 21 #include "base/time.h"
22 #include "base/utf_string_conversions.h" 22 #include "base/utf_string_conversions.h"
23 #include "chrome/browser/autofill/autofill_common_test.h"
24 #include "chrome/browser/autofill/personal_data_manager.h"
25 #include "chrome/browser/autofill/personal_data_manager_factory.h" 23 #include "chrome/browser/autofill/personal_data_manager_factory.h"
26 #include "chrome/browser/signin/signin_manager.h" 24 #include "chrome/browser/signin/signin_manager.h"
27 #include "chrome/browser/signin/signin_manager_factory.h" 25 #include "chrome/browser/signin/signin_manager_factory.h"
28 #include "chrome/browser/signin/token_service_factory.h" 26 #include "chrome/browser/signin/token_service_factory.h"
29 #include "chrome/browser/sync/abstract_profile_sync_service_test.h" 27 #include "chrome/browser/sync/abstract_profile_sync_service_test.h"
30 #include "chrome/browser/sync/glue/autofill_data_type_controller.h" 28 #include "chrome/browser/sync/glue/autofill_data_type_controller.h"
31 #include "chrome/browser/sync/glue/autofill_profile_data_type_controller.h" 29 #include "chrome/browser/sync/glue/autofill_profile_data_type_controller.h"
32 #include "chrome/browser/sync/glue/data_type_controller.h" 30 #include "chrome/browser/sync/glue/data_type_controller.h"
33 #include "chrome/browser/sync/glue/generic_change_processor.h" 31 #include "chrome/browser/sync/glue/generic_change_processor.h"
34 #include "chrome/browser/sync/glue/shared_change_processor.h" 32 #include "chrome/browser/sync/glue/shared_change_processor.h"
35 #include "chrome/browser/sync/profile_sync_components_factory.h" 33 #include "chrome/browser/sync/profile_sync_components_factory.h"
36 #include "chrome/browser/sync/profile_sync_service.h" 34 #include "chrome/browser/sync/profile_sync_service.h"
37 #include "chrome/browser/sync/profile_sync_service_factory.h" 35 #include "chrome/browser/sync/profile_sync_service_factory.h"
38 #include "chrome/browser/sync/profile_sync_test_util.h" 36 #include "chrome/browser/sync/profile_sync_test_util.h"
39 #include "chrome/browser/sync/test_profile_sync_service.h" 37 #include "chrome/browser/sync/test_profile_sync_service.h"
40 #include "chrome/browser/webdata/autocomplete_syncable_service.h" 38 #include "chrome/browser/webdata/autocomplete_syncable_service.h"
41 #include "chrome/browser/webdata/autofill_change.h" 39 #include "chrome/browser/webdata/autofill_change.h"
42 #include "chrome/browser/webdata/autofill_entry.h" 40 #include "chrome/browser/webdata/autofill_entry.h"
43 #include "chrome/browser/webdata/autofill_profile_syncable_service.h" 41 #include "chrome/browser/webdata/autofill_profile_syncable_service.h"
44 #include "chrome/browser/webdata/autofill_table.h" 42 #include "chrome/browser/webdata/autofill_table.h"
45 #include "chrome/browser/webdata/web_data_service.h" 43 #include "chrome/browser/webdata/web_data_service.h"
46 #include "chrome/browser/webdata/web_data_service_factory.h" 44 #include "chrome/browser/webdata/web_data_service_factory.h"
47 #include "chrome/browser/webdata/web_database.h" 45 #include "chrome/browser/webdata/web_database.h"
48 #include "chrome/common/chrome_notification_types.h" 46 #include "chrome/common/chrome_notification_types.h"
47 #include "components/autofill/browser/autofill_common_test.h"
48 #include "components/autofill/browser/personal_data_manager.h"
49 #include "content/public/browser/notification_source.h" 49 #include "content/public/browser/notification_source.h"
50 #include "content/public/test/test_browser_thread.h" 50 #include "content/public/test/test_browser_thread.h"
51 #include "google_apis/gaia/gaia_constants.h" 51 #include "google_apis/gaia/gaia_constants.h"
52 #include "sync/internal_api/public/base/model_type.h" 52 #include "sync/internal_api/public/base/model_type.h"
53 #include "sync/internal_api/public/read_node.h" 53 #include "sync/internal_api/public/read_node.h"
54 #include "sync/internal_api/public/read_transaction.h" 54 #include "sync/internal_api/public/read_transaction.h"
55 #include "sync/internal_api/public/write_node.h" 55 #include "sync/internal_api/public/write_node.h"
56 #include "sync/internal_api/public/write_transaction.h" 56 #include "sync/internal_api/public/write_transaction.h"
57 #include "sync/protocol/autofill_specifics.pb.h" 57 #include "sync/protocol/autofill_specifics.pb.h"
58 #include "sync/syncable/mutable_entry.h" 58 #include "sync/syncable/mutable_entry.h"
(...skipping 1260 matching lines...) Expand 10 before | Expand all | Expand 10 after
1319 std::vector<AutofillEntry> sync_entries; 1319 std::vector<AutofillEntry> sync_entries;
1320 std::vector<AutofillProfile> sync_profiles; 1320 std::vector<AutofillProfile> sync_profiles;
1321 ASSERT_TRUE(GetAutofillEntriesFromSyncDB(&sync_entries, &sync_profiles)); 1321 ASSERT_TRUE(GetAutofillEntriesFromSyncDB(&sync_entries, &sync_profiles));
1322 EXPECT_EQ(3U, sync_entries.size()); 1322 EXPECT_EQ(3U, sync_entries.size());
1323 EXPECT_EQ(0U, sync_profiles.size()); 1323 EXPECT_EQ(0U, sync_profiles.size());
1324 for (size_t i = 0; i < sync_entries.size(); i++) { 1324 for (size_t i = 0; i < sync_entries.size(); i++) {
1325 DVLOG(1) << "Entry " << i << ": " << sync_entries[i].key().name() 1325 DVLOG(1) << "Entry " << i << ": " << sync_entries[i].key().name()
1326 << ", " << sync_entries[i].key().value(); 1326 << ", " << sync_entries[i].key().value();
1327 } 1327 }
1328 } 1328 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698