Roll src/third_party/WebKit 96fb88b:6bbd108 (svn 201045:201047)
[chromium-blink-merge.git] / sync / syncable / in_memory_directory_backing_store.cc
blobda668c4740d87f894b5fae6a6848028addf47f35
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"
7 namespace syncer {
8 namespace syncable {
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) {
20 if (!IsOpen()) {
21 if (!OpenInMemory())
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;
37 return OPENED;
40 } // namespace syncable
41 } // namespace syncer