summaryrefslogtreecommitdiff
path: root/src/mongo/db/repl/storage_interface_impl.h
diff options
context:
space:
mode:
authorWilliam Schultz <william.schultz@mongodb.com>2017-08-17 16:35:07 -0400
committerWilliam Schultz <william.schultz@mongodb.com>2017-08-17 16:35:07 -0400
commit28c94950e960688fa6f7ac8af12c32c8e9e8ed9c (patch)
tree1f6dbac33142d21136cf9bfc8a006e19dc85acb5 /src/mongo/db/repl/storage_interface_impl.h
parentecfdeb1bbe8979586bd841a07f47de748c1b4094 (diff)
downloadmongo-28c94950e960688fa6f7ac8af12c32c8e9e8ed9c.tar.gz
SERVER-29898 Change StorageEngine args to ServiceContext args
Diffstat (limited to 'src/mongo/db/repl/storage_interface_impl.h')
-rw-r--r--src/mongo/db/repl/storage_interface_impl.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mongo/db/repl/storage_interface_impl.h b/src/mongo/db/repl/storage_interface_impl.h
index 49062980b69..1b48fe6c87d 100644
--- a/src/mongo/db/repl/storage_interface_impl.h
+++ b/src/mongo/db/repl/storage_interface_impl.h
@@ -134,11 +134,11 @@ public:
StatusWith<StorageInterface::CollectionCount> getCollectionCount(
OperationContext* opCtx, const NamespaceString& nss) override;
- void setStableTimestamp(StorageEngine* storageEngine, SnapshotName snapshotName) override;
+ void setStableTimestamp(ServiceContext* serviceCtx, SnapshotName snapshotName) override;
- void setInitialDataTimestamp(StorageEngine* storageEngine, SnapshotName snapshotName) override;
+ void setInitialDataTimestamp(ServiceContext* serviceCtx, SnapshotName snapshotName) override;
- Status recoverToStableTimestamp(StorageEngine* storageEngine) override;
+ Status recoverToStableTimestamp(ServiceContext* serviceCtx) override;
/**
* Checks that the "admin" database contains a supported version of the auth data schema.