| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 entry. | 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 <list> | 8 #include <list> |
| 9 #include <map> | 9 #include <map> |
| 10 #include <set> | 10 #include <set> |
| 11 #include <string> | 11 #include <string> |
| 12 | 12 |
| 13 #include "base/at_exit.h" | 13 #include "base/at_exit.h" |
| (...skipping 3971 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3985 Add(low_id_); | 3985 Add(low_id_); |
| 3986 Add(high_id_); | 3986 Add(high_id_); |
| 3987 syncer_->SyncShare(this); | 3987 syncer_->SyncShare(this); |
| 3988 ExpectLocalOrderIsByServerId(); | 3988 ExpectLocalOrderIsByServerId(); |
| 3989 } | 3989 } |
| 3990 | 3990 |
| 3991 const SyncerTest::CommitOrderingTest | 3991 const SyncerTest::CommitOrderingTest |
| 3992 SyncerTest::CommitOrderingTest::LAST_COMMIT_ITEM = {-1, TestIdFactory::root()}; | 3992 SyncerTest::CommitOrderingTest::LAST_COMMIT_ITEM = {-1, TestIdFactory::root()}; |
| 3993 | 3993 |
| 3994 } // namespace browser_sync | 3994 } // namespace browser_sync |
| OLD | NEW |