Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(322)

Side by Side Diff: sync/syncable/in_memory_directory_backing_store.cc

Issue 2130453004: [Sync] Move //sync to //components/sync. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
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.
4
5 #include "sync/syncable/in_memory_directory_backing_store.h"
6
7 namespace syncer {
8 namespace syncable {
9
10 InMemoryDirectoryBackingStore::InMemoryDirectoryBackingStore(
11 const std::string& dir_name)
12 : DirectoryBackingStore(dir_name) {
13 }
14
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;
23 }
24
25 if (!InitializeTables())
26 return FAILED_OPEN_DATABASE;
27
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;
36
37 return OPENED;
38 }
39
40 } // namespace syncable
41 } // namespace syncer
OLDNEW
« no previous file with comments | « sync/syncable/in_memory_directory_backing_store.h ('k') | sync/syncable/invalid_directory_backing_store.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698