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

Unified Diff: sync/syncable/on_disk_directory_backing_store.h

Issue 11441026: [Sync] Add support for loading, updating and querying delete journals in (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years 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 side-by-side diff with in-line comments
Download patch
Index: sync/syncable/on_disk_directory_backing_store.h
diff --git a/sync/syncable/on_disk_directory_backing_store.h b/sync/syncable/on_disk_directory_backing_store.h
index 0bf720bf540a2eb85d05189734c74d828ff457f9..62492b0a384ad405ef5ae6922bab390a5e2e5493 100644
--- a/sync/syncable/on_disk_directory_backing_store.h
+++ b/sync/syncable/on_disk_directory_backing_store.h
@@ -20,12 +20,14 @@ class OnDiskDirectoryBackingStore : public DirectoryBackingStore {
virtual ~OnDiskDirectoryBackingStore();
virtual DirOpenResult Load(
MetahandlesIndex* entry_bucket,
+ IdsIndex* delete_journals,
Directory::KernelLoadInfo* kernel_load_info) OVERRIDE;
// A helper function that will make one attempt to load the directory.
// Unlike Load(), it does not attempt to recover from failure.
DirOpenResult TryLoad(
MetahandlesIndex* entry_bucket,
+ IdsIndex* delete_journals,
Directory::KernelLoadInfo* kernel_load_info);
protected:

Powered by Google App Engine
This is Rietveld 408576698