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

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

Issue 9668028: [Sync] Create new top-level sync/ directory (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: sync to head Created 8 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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 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 22 matching lines...) Expand all
33 #include "chrome/browser/sync/glue/data_type_controller.h" 33 #include "chrome/browser/sync/glue/data_type_controller.h"
34 #include "chrome/browser/sync/glue/generic_change_processor.h" 34 #include "chrome/browser/sync/glue/generic_change_processor.h"
35 #include "chrome/browser/sync/glue/shared_change_processor.h" 35 #include "chrome/browser/sync/glue/shared_change_processor.h"
36 #include "chrome/browser/sync/internal_api/read_node.h" 36 #include "chrome/browser/sync/internal_api/read_node.h"
37 #include "chrome/browser/sync/internal_api/read_transaction.h" 37 #include "chrome/browser/sync/internal_api/read_transaction.h"
38 #include "chrome/browser/sync/internal_api/write_node.h" 38 #include "chrome/browser/sync/internal_api/write_node.h"
39 #include "chrome/browser/sync/internal_api/write_transaction.h" 39 #include "chrome/browser/sync/internal_api/write_transaction.h"
40 #include "chrome/browser/sync/profile_sync_components_factory.h" 40 #include "chrome/browser/sync/profile_sync_components_factory.h"
41 #include "chrome/browser/sync/profile_sync_service.h" 41 #include "chrome/browser/sync/profile_sync_service.h"
42 #include "chrome/browser/sync/profile_sync_test_util.h" 42 #include "chrome/browser/sync/profile_sync_test_util.h"
43 #include "chrome/browser/sync/protocol/autofill_specifics.pb.h"
44 #include "chrome/browser/sync/syncable/model_type.h" 43 #include "chrome/browser/sync/syncable/model_type.h"
45 #include "chrome/browser/sync/syncable/syncable.h" 44 #include "chrome/browser/sync/syncable/syncable.h"
46 #include "chrome/browser/sync/test/engine/test_id_factory.h" 45 #include "chrome/browser/sync/test/engine/test_id_factory.h"
47 #include "chrome/browser/sync/test_profile_sync_service.h" 46 #include "chrome/browser/sync/test_profile_sync_service.h"
48 #include "chrome/browser/webdata/autocomplete_syncable_service.h" 47 #include "chrome/browser/webdata/autocomplete_syncable_service.h"
49 #include "chrome/browser/webdata/autofill_change.h" 48 #include "chrome/browser/webdata/autofill_change.h"
50 #include "chrome/browser/webdata/autofill_entry.h" 49 #include "chrome/browser/webdata/autofill_entry.h"
51 #include "chrome/browser/webdata/autofill_profile_syncable_service.h" 50 #include "chrome/browser/webdata/autofill_profile_syncable_service.h"
52 #include "chrome/browser/webdata/autofill_table.h" 51 #include "chrome/browser/webdata/autofill_table.h"
53 #include "chrome/browser/webdata/web_database.h" 52 #include "chrome/browser/webdata/web_database.h"
54 #include "chrome/common/chrome_notification_types.h" 53 #include "chrome/common/chrome_notification_types.h"
55 #include "chrome/common/net/gaia/gaia_constants.h" 54 #include "chrome/common/net/gaia/gaia_constants.h"
56 #include "content/public/browser/notification_source.h" 55 #include "content/public/browser/notification_source.h"
57 #include "content/test/test_browser_thread.h" 56 #include "content/test/test_browser_thread.h"
57 #include "sync/protocol/autofill_specifics.pb.h"
58 #include "testing/gmock/include/gmock/gmock.h" 58 #include "testing/gmock/include/gmock/gmock.h"
59 59
60 using base::Time; 60 using base::Time;
61 using base::WaitableEvent; 61 using base::WaitableEvent;
62 using browser_sync::AutofillDataTypeController; 62 using browser_sync::AutofillDataTypeController;
63 using browser_sync::AutofillProfileDataTypeController; 63 using browser_sync::AutofillProfileDataTypeController;
64 using browser_sync::DataTypeController; 64 using browser_sync::DataTypeController;
65 using browser_sync::GenericChangeProcessor; 65 using browser_sync::GenericChangeProcessor;
66 using browser_sync::SharedChangeProcessor; 66 using browser_sync::SharedChangeProcessor;
67 using browser_sync::GROUP_DB; 67 using browser_sync::GROUP_DB;
(...skipping 1159 matching lines...) Expand 10 before | Expand all | Expand 10 after
1227 std::vector<AutofillEntry> sync_entries; 1227 std::vector<AutofillEntry> sync_entries;
1228 std::vector<AutofillProfile> sync_profiles; 1228 std::vector<AutofillProfile> sync_profiles;
1229 ASSERT_TRUE(GetAutofillEntriesFromSyncDB(&sync_entries, &sync_profiles)); 1229 ASSERT_TRUE(GetAutofillEntriesFromSyncDB(&sync_entries, &sync_profiles));
1230 EXPECT_EQ(3U, sync_entries.size()); 1230 EXPECT_EQ(3U, sync_entries.size());
1231 EXPECT_EQ(0U, sync_profiles.size()); 1231 EXPECT_EQ(0U, sync_profiles.size());
1232 for (size_t i = 0; i < sync_entries.size(); i++) { 1232 for (size_t i = 0; i < sync_entries.size(); i++) {
1233 DVLOG(1) << "Entry " << i << ": " << sync_entries[i].key().name() 1233 DVLOG(1) << "Entry " << i << ": " << sync_entries[i].key().name()
1234 << ", " << sync_entries[i].key().value(); 1234 << ", " << sync_entries[i].key().value();
1235 } 1235 }
1236 } 1236 }
OLDNEW
« no previous file with comments | « chrome/browser/sync/internal_api/write_node.cc ('k') | chrome/browser/sync/profile_sync_service_password_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698