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

Unified Diff: chrome/browser/sync/syncable/syncable.h

Issue 2854018: sync: Add method to Directory to remove all entries for a set of ModelTypes.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: fix sign issue with last-minute DCHECK I threw in Created 10 years, 6 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
« no previous file with comments | « no previous file | chrome/browser/sync/syncable/syncable.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/sync/syncable/syncable.h
===================================================================
--- chrome/browser/sync/syncable/syncable.h (revision 50328)
+++ chrome/browser/sync/syncable/syncable.h (working copy)
@@ -674,6 +674,7 @@
TakeSnapshotGetsAllDirtyHandlesTest);
FRIEND_TEST_ALL_PREFIXES(SyncableDirectoryTest,
TakeSnapshotGetsOnlyDirtyHandlesTest);
+ FRIEND_TEST_ALL_PREFIXES(SyncableDirectoryTest, TestPurgeEntriesWithTypeIn);
public:
class EventListenerHookup;
@@ -894,6 +895,15 @@
const MetahandleSet& handles,
const IdFilter& idfilter);
+ // Purges all data associated with any entries whose ModelType or
+ // ServerModelType is found in |types|, from _both_ memory and disk.
+ // Only valid, "real" model types are allowed in |types| (see model_type.h
+ // for definitions). "Purge" is just meant to distinguish from "deleting"
+ // entries, which means something different in the syncable namespace.
+ // WARNING! This can be real slow, as it iterates over all entries.
+ // WARNING! Performs synchronous I/O.
+ void PurgeEntriesWithTypeIn(const std::set<ModelType>& types);
+
private:
// Helper to prime ids_index, parent_id_and_names_index, unsynced_metahandles
// and unapplied_metahandles from metahandles_index.
@@ -919,7 +929,6 @@
// Used by CheckTreeInvariants
void GetAllMetaHandles(BaseTransaction* trans, MetahandleSet* result);
-
bool SafeToPurgeFromMemory(const EntryKernel* const entry) const;
// Helper method used to implement GetFirstChildId/GetLastChildId.
@@ -950,7 +959,6 @@
// violation. ID reassociation would fail after an attempted commit.
typedef std::set<EntryKernel*,
LessField<StringField, UNIQUE_CLIENT_TAG> > ClientTagIndex;
- typedef std::vector<int64> MetahandlesToPurge;
private:
« no previous file with comments | « no previous file | chrome/browser/sync/syncable/syncable.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698