| OLD | NEW |
| 1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 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 COMPONENTS_SYNC_SYNCABLE_INVALID_DIRECTORY_BACKING_STORE_H_ | 5 #ifndef COMPONENTS_SYNC_SYNCABLE_INVALID_DIRECTORY_BACKING_STORE_H_ |
| 6 #define COMPONENTS_SYNC_SYNCABLE_INVALID_DIRECTORY_BACKING_STORE_H_ | 6 #define COMPONENTS_SYNC_SYNCABLE_INVALID_DIRECTORY_BACKING_STORE_H_ |
| 7 | 7 |
| 8 #include "base/macros.h" | 8 #include "base/macros.h" |
| 9 #include "components/sync/base/sync_export.h" | |
| 10 #include "components/sync/syncable/directory_backing_store.h" | 9 #include "components/sync/syncable/directory_backing_store.h" |
| 11 | 10 |
| 12 namespace syncer { | 11 namespace syncer { |
| 13 namespace syncable { | 12 namespace syncable { |
| 14 | 13 |
| 15 // A class used to test scenarios where loading a directory fails. | 14 // A class used to test scenarios where loading a directory fails. |
| 16 class SYNC_EXPORT InvalidDirectoryBackingStore : public DirectoryBackingStore { | 15 class InvalidDirectoryBackingStore : public DirectoryBackingStore { |
| 17 public: | 16 public: |
| 18 InvalidDirectoryBackingStore(); | 17 InvalidDirectoryBackingStore(); |
| 19 ~InvalidDirectoryBackingStore() override; | 18 ~InvalidDirectoryBackingStore() override; |
| 20 DirOpenResult Load(Directory::MetahandlesMap* handles_map, | 19 DirOpenResult Load(Directory::MetahandlesMap* handles_map, |
| 21 JournalIndex* delete_journals, | 20 JournalIndex* delete_journals, |
| 22 MetahandleSet* metahandles_to_purge, | 21 MetahandleSet* metahandles_to_purge, |
| 23 Directory::KernelLoadInfo* kernel_load_info) override; | 22 Directory::KernelLoadInfo* kernel_load_info) override; |
| 24 | 23 |
| 25 private: | 24 private: |
| 26 DISALLOW_COPY_AND_ASSIGN(InvalidDirectoryBackingStore); | 25 DISALLOW_COPY_AND_ASSIGN(InvalidDirectoryBackingStore); |
| 27 }; | 26 }; |
| 28 | 27 |
| 29 } // namespace syncable | 28 } // namespace syncable |
| 30 } // namespace syncer | 29 } // namespace syncer |
| 31 | 30 |
| 32 #endif // COMPONENTS_SYNC_SYNCABLE_INVALID_DIRECTORY_BACKING_STORE_H_ | 31 #endif // COMPONENTS_SYNC_SYNCABLE_INVALID_DIRECTORY_BACKING_STORE_H_ |
| OLD | NEW |