aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/lib/backoff/backoff.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/lib/backoff/backoff.h')
-rw-r--r--src/core/lib/backoff/backoff.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/lib/backoff/backoff.h b/src/core/lib/backoff/backoff.h
index 6f2c30d42f..84ef9b82e4 100644
--- a/src/core/lib/backoff/backoff.h
+++ b/src/core/lib/backoff/backoff.h
@@ -34,10 +34,10 @@ class BackOff {
/// Begin retry loop: returns the deadline to be used for the next attempt,
/// following the backoff strategy.
- grpc_millis Begin(grpc_exec_ctx* exec_ctx);
+ grpc_millis Begin();
/// Step a retry loop: returns the deadline to be used for the next attempt,
/// following the backoff strategy.
- grpc_millis Step(grpc_exec_ctx* exec_ctx);
+ grpc_millis Step();
/// Reset the backoff, so the next grpc_backoff_step will be a
/// grpc_backoff_begin.
void Reset();