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

Unified Diff: components/sync/syncable/directory.h

Issue 2292393004: Remove stl_util from sync. (Closed)
Patch Set: rebase Created 4 years, 3 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 side-by-side diff with in-line comments
Download patch
Index: components/sync/syncable/directory.h
diff --git a/components/sync/syncable/directory.h b/components/sync/syncable/directory.h
index 262c8a05b01a8cc511f87e39a34e76485495dbbe..6dbaf935d6b7b69924c10c2020fbce379ec3cbed 100644
--- a/components/sync/syncable/directory.h
+++ b/components/sync/syncable/directory.h
@@ -136,9 +136,9 @@ class Directory {
KernelShareInfoStatus kernel_info_status;
PersistedKernelInfo kernel_info;
- EntryKernelSet dirty_metas;
+ OwnedEntryKernelSet dirty_metas;
MetahandleSet metahandles_to_purge;
- EntryKernelSet delete_journals;
+ OwnedEntryKernelSet delete_journals;
MetahandleSet delete_journals_to_purge;
};
@@ -609,7 +609,7 @@ class Directory {
void DeleteEntry(const ScopedKernelLock& lock,
bool save_to_journal,
EntryKernel* entry,
- EntryKernelSet* entries_to_journal);
+ OwnedEntryKernelSet* entries_to_journal);
// A private version of the public GetMetaHandlesOfType for when you already
// have a ScopedKernelLock.

Powered by Google App Engine
This is Rietveld 408576698