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
3 // found in the LICENSE file.
5 #include "sync/syncable/in_memory_directory_backing_store.h"
10 InMemoryDirectoryBackingStore::InMemoryDirectoryBackingStore(
11 const std::string
& dir_name
)
12 : DirectoryBackingStore(dir_name
) {
15 DirOpenResult
InMemoryDirectoryBackingStore::Load(
16 Directory::MetahandlesMap
* handles_map
,
17 JournalIndex
* delete_journals
,
18 MetahandleSet
* metahandles_to_purge
,
19 Directory::KernelLoadInfo
* kernel_load_info
) {
22 return FAILED_OPEN_DATABASE
;
25 if (!InitializeTables())
26 return FAILED_OPEN_DATABASE
;
28 if (!LoadEntries(handles_map
, metahandles_to_purge
))
29 return FAILED_DATABASE_CORRUPT
;
30 if (!LoadDeleteJournals(delete_journals
))
31 return FAILED_DATABASE_CORRUPT
;
32 if (!LoadInfo(kernel_load_info
))
33 return FAILED_DATABASE_CORRUPT
;
34 if (!VerifyReferenceIntegrity(handles_map
))
35 return FAILED_DATABASE_CORRUPT
;
40 } // namespace syncable