OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 // Syncer unit tests. Unfortunately a lot of these tests | 5 // Syncer unit tests. Unfortunately a lot of these tests |
6 // are outdated and need to be reworked and updated. | 6 // are outdated and need to be reworked and updated. |
7 | 7 |
8 #include <algorithm> | 8 #include <algorithm> |
9 #include <limits> | 9 #include <limits> |
10 #include <list> | 10 #include <list> |
(...skipping 16 matching lines...) Expand all Loading... |
27 #include "chrome/browser/sync/engine/syncer.h" | 27 #include "chrome/browser/sync/engine/syncer.h" |
28 #include "chrome/browser/sync/engine/syncer_proto_util.h" | 28 #include "chrome/browser/sync/engine/syncer_proto_util.h" |
29 #include "chrome/browser/sync/engine/syncer_util.h" | 29 #include "chrome/browser/sync/engine/syncer_util.h" |
30 #include "chrome/browser/sync/engine/syncproto.h" | 30 #include "chrome/browser/sync/engine/syncproto.h" |
31 #include "chrome/browser/sync/protocol/sync.pb.h" | 31 #include "chrome/browser/sync/protocol/sync.pb.h" |
32 #include "chrome/browser/sync/protocol/bookmark_specifics.pb.h" | 32 #include "chrome/browser/sync/protocol/bookmark_specifics.pb.h" |
33 #include "chrome/browser/sync/sessions/sync_session_context.h" | 33 #include "chrome/browser/sync/sessions/sync_session_context.h" |
34 #include "chrome/browser/sync/syncable/directory_manager.h" | 34 #include "chrome/browser/sync/syncable/directory_manager.h" |
35 #include "chrome/browser/sync/syncable/model_type.h" | 35 #include "chrome/browser/sync/syncable/model_type.h" |
36 #include "chrome/browser/sync/syncable/syncable.h" | 36 #include "chrome/browser/sync/syncable/syncable.h" |
37 #include "chrome/test/sync/engine/mock_connection_manager.h" | 37 #include "chrome/browser/sync/test/engine/mock_connection_manager.h" |
38 #include "chrome/test/sync/engine/test_directory_setter_upper.h" | 38 #include "chrome/browser/sync/test/engine/test_directory_setter_upper.h" |
39 #include "chrome/test/sync/engine/test_id_factory.h" | 39 #include "chrome/browser/sync/test/engine/test_id_factory.h" |
40 #include "chrome/test/sync/engine/test_syncable_utils.h" | 40 #include "chrome/browser/sync/test/engine/test_syncable_utils.h" |
41 #include "testing/gtest/include/gtest/gtest.h" | 41 #include "testing/gtest/include/gtest/gtest.h" |
42 | 42 |
43 using base::TimeDelta; | 43 using base::TimeDelta; |
44 | 44 |
45 using std::map; | 45 using std::map; |
46 using std::multimap; | 46 using std::multimap; |
47 using std::set; | 47 using std::set; |
48 using std::string; | 48 using std::string; |
49 | 49 |
50 namespace browser_sync { | 50 namespace browser_sync { |
(...skipping 5189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5240 Add(low_id_); | 5240 Add(low_id_); |
5241 Add(high_id_); | 5241 Add(high_id_); |
5242 SyncShareAsDelegate(); | 5242 SyncShareAsDelegate(); |
5243 ExpectLocalOrderIsByServerId(); | 5243 ExpectLocalOrderIsByServerId(); |
5244 } | 5244 } |
5245 | 5245 |
5246 const SyncerTest::CommitOrderingTest | 5246 const SyncerTest::CommitOrderingTest |
5247 SyncerTest::CommitOrderingTest::LAST_COMMIT_ITEM = {-1, TestIdFactory::root()}; | 5247 SyncerTest::CommitOrderingTest::LAST_COMMIT_ITEM = {-1, TestIdFactory::root()}; |
5248 | 5248 |
5249 } // namespace browser_sync | 5249 } // namespace browser_sync |
OLD | NEW |