OLD | NEW |
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 #ifndef SYNC_TEST_TEST_DIRECTORY_BACKING_STORE_H_ | 5 #ifndef SYNC_TEST_TEST_DIRECTORY_BACKING_STORE_H_ |
6 #define SYNC_TEST_TEST_DIRECTORY_BACKING_STORE_H_ | 6 #define SYNC_TEST_TEST_DIRECTORY_BACKING_STORE_H_ |
7 #pragma once | |
8 | 7 |
9 #include "base/gtest_prod_util.h" | 8 #include "base/gtest_prod_util.h" |
10 #include "sync/syncable/directory_backing_store.h" | 9 #include "sync/syncable/directory_backing_store.h" |
11 | 10 |
12 namespace syncer { | 11 namespace syncer { |
13 namespace syncable { | 12 namespace syncable { |
14 | 13 |
15 // This implementation of DirectoryBackingStore does not manage its own | 14 // This implementation of DirectoryBackingStore does not manage its own |
16 // database. This makes it more flexible (and more complex) than the | 15 // database. This makes it more flexible (and more complex) than the |
17 // InMemoryDirectoryBackingStore. | 16 // InMemoryDirectoryBackingStore. |
(...skipping 28 matching lines...) Expand all Loading... |
46 FRIEND_TEST_ALL_PREFIXES(DirectoryBackingStoreTest, DeleteEntries); | 45 FRIEND_TEST_ALL_PREFIXES(DirectoryBackingStoreTest, DeleteEntries); |
47 FRIEND_TEST_ALL_PREFIXES(DirectoryBackingStoreTest, GenerateCacheGUID); | 46 FRIEND_TEST_ALL_PREFIXES(DirectoryBackingStoreTest, GenerateCacheGUID); |
48 FRIEND_TEST_ALL_PREFIXES(MigrationTest, ToCurrentVersion); | 47 FRIEND_TEST_ALL_PREFIXES(MigrationTest, ToCurrentVersion); |
49 friend class MigrationTest; | 48 friend class MigrationTest; |
50 }; | 49 }; |
51 | 50 |
52 } // namespace syncable | 51 } // namespace syncable |
53 } // namespace syncer | 52 } // namespace syncer |
54 | 53 |
55 #endif // SYNC_TEST_TEST_DIRECTORY_BACKING_STORE_H_ | 54 #endif // SYNC_TEST_TEST_DIRECTORY_BACKING_STORE_H_ |
OLD | NEW |