blob: 73ae04c3b0ddb15c3529e2503453dbe0ae5ad5c9 [file] [log] [blame]
// Copyright 2020 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "brillo/grpc/time_util.h"
#include <grpc/support/time.h>
namespace brillo {
gpr_timespec GprTimespecWithDeltaFromNow(base::TimeDelta delta) {
return gpr_time_add(
gpr_now(GPR_CLOCK_MONOTONIC),
gpr_time_from_millis(delta.InMilliseconds(), GPR_TIMESPAN));
}
} // namespace brillo