chromium/base/allocator/partition_allocator/src/partition_alloc/partition_alloc_base/time/time_conversion_posix.cc

// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include <sys/time.h>

#include <cstdint>
#include <ctime>
#include <limits>

#include "partition_alloc/partition_alloc_base/check.h"
#include "partition_alloc/partition_alloc_base/time/time.h"

namespace partition_alloc::internal::base {

// static
TimeDelta TimeDelta::FromTimeSpec(const timespec& ts) {}

struct timespec TimeDelta::ToTimeSpec() const {}

// static
Time Time::FromTimeVal(struct timeval t) {}

struct timeval Time::ToTimeVal() const {}

}  // namespace partition_alloc::internal::base