Index: chrome/browser/sync_file_system/drive_backend/metadata_database_index.h |
diff --git a/chrome/browser/sync_file_system/drive_backend/metadata_database_index.h b/chrome/browser/sync_file_system/drive_backend/metadata_database_index.h |
index 85f9582b66237f89e3c6a23fe1e9899fc43c74a3..866222c1e3ae6112d847c9f8d7c79b5678c4928a 100644 |
--- a/chrome/browser/sync_file_system/drive_backend/metadata_database_index.h |
+++ b/chrome/browser/sync_file_system/drive_backend/metadata_database_index.h |
@@ -95,9 +95,10 @@ class MetadataDatabaseIndex : public MetadataDatabaseIndexInterface { |
virtual std::string PickMultiTrackerFileID() const OVERRIDE; |
virtual ParentIDAndTitle PickMultiBackingFilePath() const OVERRIDE; |
virtual int64 PickDirtyTracker() const OVERRIDE; |
- virtual void DemoteDirtyTracker(int64 tracker_id) OVERRIDE; |
+ virtual void DemoteDirtyTracker(int64 tracker_id, |
+ leveldb::WriteBatch* batch) OVERRIDE; |
nhiroki
2014/07/07 09:52:29
nit: can you make indents of arguments consistent
peria
2014/07/08 03:05:07
Done.
|
virtual bool HasDemotedDirtyTracker() const OVERRIDE; |
- virtual void PromoteDemotedDirtyTrackers() OVERRIDE; |
+ virtual void PromoteDemotedDirtyTrackers(leveldb::WriteBatch* batch) OVERRIDE; |
virtual size_t CountDirtyTracker() const OVERRIDE; |
virtual size_t CountFileMetadata() const OVERRIDE; |
virtual size_t CountFileTracker() const OVERRIDE; |