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 #include "chrome/browser/sync/syncable/syncable.h" | 5 #include "chrome/browser/sync/syncable/syncable.h" |
6 | 6 |
7 #include "build/build_config.h" | 7 #include "build/build_config.h" |
8 | 8 |
9 #include <sys/types.h> | 9 #include <sys/types.h> |
10 | 10 |
11 #include <limits> | 11 #include <limits> |
12 #include <string> | 12 #include <string> |
13 | 13 |
14 #if !defined(OS_WIN) | 14 #if !defined(OS_WIN) |
15 #define MAX_PATH PATH_MAX | 15 #define MAX_PATH PATH_MAX |
16 #include <ostream> | 16 #include <ostream> |
17 #include <stdio.h> | 17 #include <stdio.h> |
18 #include <sys/ipc.h> | 18 #include <sys/ipc.h> |
19 #include <sys/sem.h> | 19 #include <sys/sem.h> |
20 #include <sys/times.h> | 20 #include <sys/times.h> |
21 #endif // !defined(OS_WIN) | 21 #endif // !defined(OS_WIN) |
22 | 22 |
23 #include "base/file_path.h" | 23 #include "base/file_path.h" |
24 #include "base/file_util.h" | 24 #include "base/file_util.h" |
25 #include "base/logging.h" | 25 #include "base/logging.h" |
26 #include "base/memory/scoped_ptr.h" | 26 #include "base/memory/scoped_ptr.h" |
27 #include "base/memory/scoped_temp_dir.h" | 27 #include "base/scoped_temp_dir.h" |
28 #include "base/stringprintf.h" | 28 #include "base/stringprintf.h" |
29 #include "base/threading/platform_thread.h" | 29 #include "base/threading/platform_thread.h" |
30 #include "base/values.h" | 30 #include "base/values.h" |
31 #include "chrome/browser/sync/engine/syncproto.h" | 31 #include "chrome/browser/sync/engine/syncproto.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/syncable/directory_backing_store.h" | 33 #include "chrome/browser/sync/syncable/directory_backing_store.h" |
34 #include "chrome/browser/sync/syncable/directory_manager.h" | 34 #include "chrome/browser/sync/syncable/directory_manager.h" |
35 #include "chrome/common/deprecated/event_sys-inl.h" | 35 #include "chrome/common/deprecated/event_sys-inl.h" |
36 #include "chrome/test/sync/engine/test_id_factory.h" | 36 #include "chrome/test/sync/engine/test_id_factory.h" |
37 #include "chrome/test/sync/engine/test_syncable_utils.h" | 37 #include "chrome/test/sync/engine/test_syncable_utils.h" |
(...skipping 1743 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1781 TEST_F(SyncableClientTagTest, TestClientTagIndexDuplicateServer) { | 1781 TEST_F(SyncableClientTagTest, TestClientTagIndexDuplicateServer) { |
1782 EXPECT_TRUE(CreateWithDefaultTag(factory_.NewServerId(), true)); | 1782 EXPECT_TRUE(CreateWithDefaultTag(factory_.NewServerId(), true)); |
1783 EXPECT_FALSE(CreateWithDefaultTag(factory_.NewServerId(), true)); | 1783 EXPECT_FALSE(CreateWithDefaultTag(factory_.NewServerId(), true)); |
1784 EXPECT_FALSE(CreateWithDefaultTag(factory_.NewServerId(), false)); | 1784 EXPECT_FALSE(CreateWithDefaultTag(factory_.NewServerId(), false)); |
1785 EXPECT_FALSE(CreateWithDefaultTag(factory_.NewLocalId(), false)); | 1785 EXPECT_FALSE(CreateWithDefaultTag(factory_.NewLocalId(), false)); |
1786 EXPECT_FALSE(CreateWithDefaultTag(factory_.NewLocalId(), true)); | 1786 EXPECT_FALSE(CreateWithDefaultTag(factory_.NewLocalId(), true)); |
1787 } | 1787 } |
1788 | 1788 |
1789 } // namespace | 1789 } // namespace |
1790 } // namespace syncable | 1790 } // namespace syncable |
OLD | NEW |